PNG  IHDR* pHYs+ IDATx]n#; cdLb Ǚ[at¤_:uP}>!Usă cag޿ ֵNu`ݼTâabO7uL&y^wFٝA"l[|ŲHLN밪4*sG3|Dv}?+y߉{OuOAt4Jj.u]Gz*҉sP'VQKbA1u\`& Af;HWj hsO;ogTu uj7S3/QzUr&wS`M$X_L7r2;aE+ώ%vikDA:dR+%KzƉo>eOth$z%: :{WwaQ:wz%4foɹE[9<]#ERINƻv溂E%P1i01 |Jvҗ&{b?9g=^wζXn/lK::90KwrюO\!ջ3uzuGv^;騢wq<Iatv09:tt~hEG`v;3@MNZD.1]L:{ծI3`L(÷ba")Y.iljCɄae#I"1 `3*Bdz>j<fU40⨬%O$3cGt]j%Fߠ_twJ;ABU8vP3uEԑwQ V:h%))LfraqX-ۿX]v-\9I gl8tzX ]ecm)-cgʒ#Uw=Wlێn(0hPP/ӨtQ“&J35 $=]r1{tLuǮ*i0_;NƝ8;-vݏr8+U-kruȕYr0RnC]*ެ(M:]gE;{]tg(#ZJ9y>utRDRMdr9㪩̞zֹb<ģ&wzJM"iI( .ꮅX)Qw:9,i좜\Ԛi7&N0:asϓc];=ΗOӣ APqz93 y $)A*kVHZwBƺnWNaby>XMN*45~ղM6Nvm;A=jֲ.~1}(9`KJ/V F9[=`~[;sRuk]rєT!)iQO)Y$V ی ۤmzWz5IM Zb )ˆC`6 rRa}qNmUfDsWuˤV{ Pݝ'=Kֳbg,UҘVz2ﴻnjNgBb{? ߮tcsͻQuxVCIY۠:(V뺕 ٥2;t`@Fo{Z9`;]wMzU~%UA蛚dI vGq\r82iu +St`cR.6U/M9IENDB` REDROOM
PHP 5.6.40
Preview: mariadb.service Size: 5.58 KB
//etc/systemd/system/multi-user.target.wants/mariadb.service

# It's not recommended to modify this file in-place, because it will be
# overwritten during package upgrades.  If you want to customize, the
# best way is to create a file "/etc/systemd/system/mariadb.service",
# containing
#	.include /usr/lib/systemd/system/mariadb.service
#	...make your changes here...
# or create a file "/etc/systemd/system/mariadb.service.d/foo.conf",
# which doesn't need to include ".include" call and which will be parsed
# after the file mariadb.service itself is parsed.
#
# For more info about custom unit files, see systemd.unit(5) or
# https://mariadb.com/kb/en/mariadb/systemd/
#
# Copyright notice:
#
# This file is free software; you can redistribute it and/or modify it
# under the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation; either version 2.1 of the License, or
# (at your option) any later version.

[Unit]
Description=MariaDB 10.11.16 database server
Documentation=man:mariadbd(8)
Documentation=https://mariadb.com/kb/en/library/systemd/
After=network.target

[Install]
WantedBy=multi-user.target


[Service]

##############################################################################
## Core requirements
##

Type=notify

# Setting this to true can break replication and the Type=notify settings
# See also bind-address mariadbd option.
PrivateNetwork=false

##############################################################################
## Package maintainers
##

User=mysql
Group=mysql

# CAP_IPC_LOCK To allow memlock to be used as non-root user
# These are enabled by default
AmbientCapabilities=CAP_IPC_LOCK

# Prevent writes to /usr, /boot, and /etc
ProtectSystem=full



# Doesn't yet work properly with SELinux enabled
# NoNewPrivileges=true

# Prevent accessing /home, /root and /run/user
ProtectHome=true

# Use an environment file to pass variable _WSREP_NEW_CLUSTER
EnvironmentFile=-/run/mariadb/wsrep-new-cluster

# Use an environment file to pass variable _WSREP_START_POSITION
EnvironmentFile=-/run/mariadb/wsrep-start-position

# Perform automatic wsrep recovery. When server is started without wsrep,
# galera_recovery simply returns an empty string. In any case, however,
# the script is not expected to return with a non-zero status.
# It is always safe to remove /run/mariadb/wsrep-start-position
# environment file.
# Do not panic if galera_recovery script is not available. (MDEV-10538)
ExecStartPre=/bin/sh -c "[ ! -e /usr/bin/galera_recovery ] && VAR= || \
 VAR=`/usr/bin/galera_recovery`; [ $? -eq 0 ] \
 && echo _WSREP_START_POSITION=$VAR > /run/mariadb/wsrep-start-position || exit 1"

# Needed to create system tables etc.
# ExecStartPre=/usr/bin/mariadb-install-db

# Start main service
# MYSQLD_OPTS here is for users to set in /etc/systemd/system/mariadb.service.d/MY_SPECIAL.conf
# Use the [Service] section and Environment="MYSQLD_OPTS=...".
# This isn't a replacement for my.cnf.
# _WSREP_NEW_CLUSTER is for the exclusive use of the script galera_new_cluster
ExecStart=/usr/sbin/mariadbd $MYSQLD_OPTS $_WSREP_NEW_CLUSTER $_WSREP_START_POSITION

# Unset _WSREP_START_POSITION/_WSREP_NEW_CLUSTER environment variable.
ExecStartPost=/bin/rm -f /run/mariadb/wsrep-start-position /run/mariadb/wsrep-new-cluster



KillSignal=SIGTERM

# Don't want to see an automated SIGKILL ever
SendSIGKILL=no

# Restart crashed server only, on-failure would also restart, for example, when
# my.cnf contains unknown option
Restart=on-abnormal
RestartSec=5s

UMask=007

##############################################################################
## USERs can override
##
##
## by creating a file in /etc/systemd/system/mariadb.service.d/MY_SPECIAL.conf
## and adding/setting the following under [Service] will override this file's
## settings.

# Useful options not previously available in [mysqld_safe]

# Kernels like killing mariadbd when out of memory because its big.
# Lets temper that preference a little.
# OOMScoreAdjust=-600

# Explicitly start with high IO priority
# BlockIOWeight=1000

# If you don't use the /tmp directory for SELECT ... OUTFILE and
# LOAD DATA INFILE you can enable PrivateTmp=true for a little more security.
PrivateTmp=false

# Set an explicit Start and Stop timeout of 900 seconds (15 minutes!)
# this is the same value as used in SysV init scripts in the past
# Galera might need a longer timeout, check the KB if you want to change this:
# https://mariadb.com/kb/en/library/systemd/#configuring-the-systemd-service-timeout
TimeoutStartSec=900
TimeoutStopSec=900

# Set the maximium number of tasks (threads) to 99% of what the system can
# handle as set by the kernel, reserve the 1% for a remote ssh connection,
# some monitoring, or that backup cron job. Without the directive this would
# be 15% (see DefaultTasksMax in systemd man pages).
TasksMax=99%

##
## Options previously available to be set via [mysqld_safe]
## that now needs to be set by systemd config files as mysqld_safe
## isn't executed.
##

# Number of files limit. previously [mysqld_safe] open-files-limit
LimitNOFILE=32768

# Maximium core size. previously [mysqld_safe] core-file-size
# LimitCore=

# Nice priority. previously [mysqld_safe] nice
# Nice=-5

# Timezone. previously [mysqld_safe] timezone
# Environment="TZ=UTC"

# Library substitutions. previously [mysqld_safe] malloc-lib with explicit paths
# (in LD_LIBRARY_PATH) and library name (in LD_PRELOAD).
# Environment="LD_LIBRARY_PATH=/path1 /path2" "LD_PRELOAD=

# Flush caches. previously [mysqld_safe] flush-caches=1
# ExecStartPre=sync
# ExecStartPre=sysctl -q -w vm.drop_caches=3

# numa-interleave=1 equalivant
# Change ExecStart=numactl --interleave=all /usr/sbin/mariadbd......

# crash-script equalivent
# FailureAction=

Directory Contents

Dirs: 0 × Files: 62

Name Size Perms Modified Actions
222 B lrw-r--r-- 2022-10-10 10:23:17
Edit Download
1.81 KB lrw-r--r-- 2025-07-15 09:41:56
Edit Download
341 B lrw-r--r-- 2025-04-11 16:26:31
Edit Download
551 B lrw-r--r-- 2024-11-05 07:47:18
Edit Download
684 B lrw-r--r-- 2025-04-06 18:09:35
Edit Download
715 B lrw-r--r-- 2026-01-30 23:06:22
Edit Download
324 B lrw-r--r-- 2025-04-06 18:09:34
Edit Download
625 B lrw-r--r-- 2025-04-06 18:09:34
Edit Download
415 B lrw-r--r-- 2025-04-06 18:09:34
Edit Download
548 B lrw-r--r-- 2025-04-06 18:11:45
Edit Download
356 B lrw-r--r-- 2024-04-06 11:40:04
Edit Download
335 B lrw-r--r-- 2025-04-11 16:26:31
Edit Download
326 B lrw-r--r-- 2025-04-11 16:27:27
Edit Download
415 B lrw-r--r-- 2026-01-30 23:06:22
Edit Download
362 B lrw-r--r-- 2025-11-04 20:49:02
Edit Download
427 B lrw-r--r-- 2025-12-17 16:01:04
Edit Download
316 B lrw-r--r-- 2025-04-06 18:11:47
Edit Download
526 B lrw-r--r-- 2019-07-22 08:48:26
Edit Download
660 B lrw-r--r-- 2026-01-13 16:07:33
Edit Download
277 B lrw-r--r-- 2025-11-20 10:57:40
Edit Download
964 B lrw-r--r-- 2026-01-08 18:02:27
Edit Download
430 B lrw-r--r-- 2025-11-06 07:58:11
Edit Download
388 B lrw-r--r-- 2024-10-25 12:14:24
Edit Download
1.20 KB lrw-r--r-- 2025-11-27 10:46:49
Edit Download
507 B lrw-r--r-- 2025-11-27 10:46:48
Edit Download
494 B lrw-r--r-- 2025-12-08 13:26:56
Edit Download
232 B lrw-r--r-- 2025-12-18 08:49:48
Edit Download
402 B lrw-r--r-- 2025-12-29 10:16:13
Edit Download
440 B lrw-r--r-- 2025-12-10 13:08:24
Edit Download
436 B lrw-r--r-- 2025-12-10 13:36:09
Edit Download
1.12 KB lrw-r--r-- 2025-12-10 13:34:38
Edit Download
1.20 KB lrw-r--r-- 2025-11-27 10:46:49
Edit Download
654 B lrw-r--r-- 2025-04-06 18:11:54
Edit Download
475 B lrw-r--r-- 2023-10-14 17:57:37
Edit Download
371 B lrw-r--r-- 2025-11-04 07:36:42
Edit Download
388 B lrw-r--r-- 2024-09-24 08:36:00
Edit Download
545 B lrw-r--r-- 2026-01-07 08:39:54
Edit Download
301 B lrw-r--r-- 2026-01-21 23:14:30
Edit Download
660 B lrw-r--r-- 2026-01-13 16:07:33
Edit Download
248 B lrw-r--r-- 2025-10-07 20:23:35
Edit Download
5.58 KB lrw-r--r-- 2026-01-31 17:15:45
Edit Download
310 B lrw-r--r-- 2025-11-05 10:54:46
Edit Download
413 B lrw-r--r-- 2025-06-04 10:54:28
Edit Download
393 B lrw-r--r-- 2025-01-28 01:21:07
Edit Download
512 B lrw-r--r-- 2025-12-08 09:42:14
Edit Download
398 B lrw-r--r-- 2025-06-02 22:22:27
Edit Download
1.39 KB lrw-r--r-- 2025-08-26 16:35:57
Edit Download
191 B lrw-r--r-- 2025-06-09 17:22:04
Edit Download
0 B ?????????? 2026-02-08 12:46:47
Edit Download
316 B lrw-r--r-- 2021-10-11 07:54:20
Edit Download
522 B lrw-r--r-- 2018-06-22 11:11:49
Edit Download
960 B lrw-r--r-- 2024-11-05 02:29:25
Edit Download
352 B lrw-r--r-- 2025-04-06 18:09:03
Edit Download
329 B lrw-r--r-- 2024-04-06 14:11:24
Edit Download
456 B lrw-r--r-- 2025-12-18 02:27:46
Edit Download
772 B lrw-r--r-- 2025-11-06 10:40:40
Edit Download
515 B lrw-r--r-- 1990-01-01 12:00:00
Edit Download
475 B lrw-r--r-- 2024-07-03 09:57:24
Edit Download
490 B lrw-r--r-- 2026-01-30 23:06:22
Edit Download
439 B lrw-r--r-- 2024-02-22 12:23:28
Edit Download
341 B lrw-r--r-- 2026-01-14 17:56:25
Edit Download
339 B lrw-r--r-- 2026-01-14 17:56:25
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).
© 2026 REDROOM — Secure File Manager. All rights reserved. Built with ❤️ & Red Dark UI