✘✘ GRAYBYTE WORDPRESS FILE MANAGER ✘✘

​🇳​​🇦​​🇲​​🇪♯➤ server.blackpussy.asia ​🇻​♯➤ 5.14.0-611.20.1.el9_7.x86_64 #1 SMP 🇾​♯➤ 2026

𝗛𝗢𝗠𝗘 𝗜𝗗 ♯➤ 163.245.207.76 ♯➤ 𝗔𝗗𝗠𝗜𝗡 𝗜𝗗 216.73.216.243
𝗢𝗣𝗧𝗜𝗢𝗡𝗦 ♯ CRL ♯➤ 𝗢𝗞 ┃ WGT ♯➤ 𝗢𝗞 ┃ SDO ♯➤ 𝗢𝗞 ┃ PKEX ♯➤ 𝗢𝗙𝗙
𝗗𝗘𝗔𝗖𝗧𝗜𝗩𝗔𝗧𝗘𝗗 ♯➤ mail,mb_send_mail
𝗖𝗨𝗥𝗥𝗘𝗡𝗧 𝗙𝗜𝗟𝗘 : /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/docs/server/server-management/starting-and-stopping-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.19 database server
Documentation=man:mariadbd(8)
Documentation=https://mariadb.com/docs/server/server-management/starting-and-stopping-mariadb/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

# Restrict modifications of cgroups from the MariaDB service context.
ProtectControlGroups=true

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

# Use an environment file to pass variable _WSREP_NEW_CLUSTER.
# Must not be writable by mysql user.
EnvironmentFile=-/run/mariadb-wsrep-new-cluster

# 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
#
# Perform automatic wsrep recovery. When server is started without wsrep,
# galera_recovery simply returns an empty string. In any case, however, it is
# not expected to return a non-zero status.
ExecStart=/bin/sh -c "set -f; [ ! -e /usr/bin/galera_recovery ] && VAR= || \
 VAR=`/usr/bin/galera_recovery`; [ $? -eq 0 ] || exit 1; \
 exec /usr/sbin/mariadbd $MYSQLD_OPTS $_WSREP_NEW_CLUSTER $VAR"

# have to set the name explicitly now, otherwise it'll be the
# first name from ExecStart
SyslogIdentifier=mariadbd



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/docs/server/server-management/starting-and-stopping-mariadb/systemd
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
# For liburing and io_uring_setup()
LimitMEMLOCK=524288
# 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=

Current_dir [ 𝗡𝗢𝗧 𝗪𝗥𝗜𝗧𝗘𝗔𝗕𝗟𝗘 ] Document_root [ 𝗪𝗥𝗜𝗧𝗘𝗔𝗕𝗟𝗘 ]

Current_dir [ 𝗡𝗢𝗧 𝗪𝗥𝗜𝗧𝗘𝗔𝗕𝗟𝗘 ] Document_root [ 𝗪𝗥𝗜𝗧𝗘𝗔𝗕𝗟𝗘 ]


[ Back ]
𝗡𝗔𝗠𝗘
𝗦𝗜𝗭𝗘
𝗟𝗔𝗦𝗧 𝗧𝗢𝗨𝗖𝗛
𝗨𝗦𝗘𝗥
𝗦𝗧𝗔𝗧𝗨𝗦
𝗙𝗨𝗡𝗖𝗧𝗜𝗢𝗡𝗦
..
--
11 Sep 2026 4.57 AM
root / root
0755
NetworkManager.service
1.357 KB
24 Aug 2026 11.49 AM
root / root
0644
aibolit-resident.service
0.925 KB
22 Jul 2026 8.27 AM
root / root
0644
atd.service
0.268 KB
12 Nov 2025 12.38 AM
root / root
0644
auditd.service
1.982 KB
4 Apr 2026 8.12 PM
root / root
0644
chronyd.service
1.434 KB
9 Apr 2026 12.49 AM
root / root
0644
cpanel-onboot.service
0.668 KB
17 Jan 2026 3.16 PM
root / root
0644
cpanel.service
0.699 KB
17 Jan 2026 3.16 PM
root / root
0644
cpanelquotaonboot.service
0.316 KB
17 Jan 2026 3.16 PM
root / root
0644
cpipv6.service
0.535 KB
17 Jan 2026 3.17 PM
root / root
0644
crond.service
0.362 KB
9 Apr 2026 5.59 AM
root / root
0644
dovecot.service
0.354 KB
31 Aug 2026 12.00 AM
root / root
0644
ea-php82-php-fpm.service
0.699 KB
4 Aug 2026 11.08 PM
root / root
0644
exim.service
0.417 KB
10 Sep 2026 2.30 PM
root / root
0644
fastmail.service
0.309 KB
17 Jan 2026 3.17 PM
root / root
0644
httpd.service
0.645 KB
25 Feb 2026 1.26 PM
root / root
0644
imunify-antivirus.service
3.753 KB
5 Aug 2026 11.19 AM
root / root
0644
imunify-notifier.service
0.379 KB
7 Jul 2026 8.56 AM
root / root
0644
ipaliases.service
0.639 KB
17 Jan 2026 3.17 PM
root / root
0644
irqbalance.service
1.044 KB
8 Apr 2026 4.39 PM
root / root
0644
kdump.service
0.45 KB
8 Apr 2026 6.11 PM
root / root
0644
lm_sensors.service
0.397 KB
10 Feb 2022 7.46 AM
root / root
0644
lshttpd.service
0.645 KB
25 Feb 2026 1.26 PM
root / root
0644
mailman.service
0.242 KB
2 May 2026 6.41 PM
root / root
0644
mariadb.service
5.452 KB
19 Aug 2026 9.01 AM
root / root
0644
mdmonitor.service
0.304 KB
28 Jul 2026 10.36 AM
root / root
0644
nfs-client.target
0.423 KB
8 Apr 2026 4.14 PM
root / root
0644
nftables.service
0.384 KB
26 Aug 2026 12.05 PM
root / root
0644
nscd.service
0.5 KB
3 Aug 2026 10.13 AM
root / root
0644
pdns.service
1.491 KB
10 Aug 2026 7.13 PM
root / root
0644
remote-fs.target
0.518 KB
31 Oct 2022 6.59 PM
root / root
0644
rsyslog.service
0.976 KB
14 Apr 2026 3.35 PM
root / root
0644
securetmp.service
0.344 KB
17 Jan 2026 3.15 PM
root / root
0644
smartd.service
0.326 KB
8 Apr 2026 8.37 PM
root / root
0644
sshd.service
0.363 KB
29 Jul 2026 11.09 PM
root / root
0644
sssd.service
0.75 KB
23 Jul 2026 7.31 PM
root / root
0644
sw-engine.service
0.503 KB
1 Jan 1990 12.00 PM
root / root
0644
sysstat.service
0.464 KB
15 Apr 2026 10.16 AM
root / root
0644
wp-toolkit-background-tasks.service
0.333 KB
25 Aug 2026 3.49 PM
root / root
0644
wp-toolkit-scheduled-tasks.service
0.331 KB
25 Aug 2026 3.49 PM
root / root
0644
wpmm-port111-guard.service
0.249 KB
10 Sep 2026 4.27 AM
root / root
0644

✘✘ GRAYBYTE WORDPRESS FILE MANAGER @ 2026 CONTACT ME ✘✘
Static GIF Static GIF