PATH:
lib
/
systemd
/
system
# Multi instance version of MariaDB # # Use this if you run multiple instances of MariaDB on a single server. # # This systemd service is not suitable for Galera as specialised SST recovery # scripts are needed. # # # 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. # # # MULTI INSTANCES # # When multiple instances of MariaDB are running on a server they need to # ensure that they don't conflict with each other. This includes elements # like network ports, sockets and data directories listed under CONFLICTING # VARIABLES below. The systemd environment variable MYSQLD_MULTI_INSTANCE # controls each instance to ensure it is run independently. It is passed to # mariadbd and mysql_install # # By default, a group suffix exists and within the default configuration # files, a group [mariadbd.{instancename}] is read for each service. Other # default groups, like [server.{instancename}] and [mariadb.{instancename}], # are also read. For each instance, one of the groups will need to contain # the conflicting variables listed below under CONFLICTING VARIABLES. # # The MYSQLD_MULTI_INSTANCE environment used is: # Environment='MYSQLD_MULTI_INSTANCE=--defaults-group-suffix=.%I --basedir=/usr' # # # APPLYING YOUR MULTI INSTANCE MECHANISM # # To apply one of the non-default multi-instance mechanisms, create a file # "/etc/systemd/system/mariadb@.service.d/multi.conf" containing: # # [Service] # Environment=MYSQLD_MULTI_INSTANCE="...." # # Include any other settings you which to override. Directives like Exec* are # lists and adding a directive will append to the list. You can clear the list # by starting with "Directive=" and no value. Follow this by the list that you # do want. See the systemd.unit(5) manual page for more information. # # Then run "systemctl daemon-reload". # # # EXAMPLE MYSQLD_MULTI_INSTANCE CONFIGURATIONS # # Configuration File Based Mechanism: # # This has a configuration file per instance. # # [Unit] # ConditionPathExists=/etc/my.%I.cnf # # [Service] # Environment=MYSQLD_MULTI_INSTANCE=--defaults-file=/etc/my.%I.cnf # # Here you need to create a configuration file /etc/my.%I.cnf for each # instance, each containing the conflicting variables to separate instances. # # # Multi User Based Mechanism: # # Here each user (the instance name) has their own mysql instance. # # Create instances in users home directory with abstract socket: # # [Service] # User=%I # ProtectHome=false # ExecStartPre= # ExecStartPre=/usr/bin/mariadb-install-db $MYSQLD_MULTI_INSTANCE \ # --auth-root-authentication-method=socket --auth-root-socket-user=%I # Environment=MYSQLD_MULTI_INSTANCE="--defaults-file=/home/%I/my%I.cnf \ # --datadir=/home/%I/mysqldatadir --skip-networking --socket=@mysql-%I" # # # Command Line Mechanism: # # This is a good way run multiple instance where there is little difference # in configuration between instances. # # [Service] # Environment=MYSQLD_MULTI_INSTANCE="--socket=/run/mysqld/%I.sock \ # --datadir=/var/lib/mysqld-multi/%I \ # --skip-networking" # # # CONFLICTING VARIABLES # # A number of MariaDB system variables may conflict. The main ones that need to # be set because their default values will conflict are: # * socket # * port # * datadir # # # PRE-10.4 # # Before 10.4 MYSQLD_MULTI_INSTANCE was effectively --defaults-file=/etc/my.cnf.d/my%I.cnf # As /etc/my.cnf included these files it was a bad choice as an # existing single instance would include all these files. If you want to # continue a file based multi-instance mariadbd, recommend the Configuration File # Based Mechanism above and moving /etc/my.cnf.d/my%I.cnf files to /etc/my%I.cnf. # # # SELINUX # # As basic selinux rules are written around a single instance of MariaDB you may need # to define labels for the files and network ports of all instances. # # See: https://mariadb.com/kb/en/library/what-to-do-if-mariadb-doesnt-start/#selinux # # # STARTING # # Start the instance: systemctl start mariadb@{instancename}.service # # # DOCUMENTATION: # # Read https://mariadb.com/kb/en/mariadb/systemd/ regarding customisation. # # Also see systemd man pages: systemd.unit(5), systemd.exec(5) and # systemd.service(5) [Unit] Description=MariaDB 11.4.9 database server (multi-instance %I) Documentation=man:mariadbd(8) Documentation=https://mariadb.com/kb/en/library/systemd/ After=network.target # Negated condition here is because 10.3 and before had /etc/my.cnf.d/my%I.cnf # as the configuration difference for multiple instances. This condition here # to prevent an accidental change during an upgrade in the case the user # created these file(s). # ## See Environment=MYSQLD_MULTI_INSTANCE below for current recommended options. ConditionPathExists=!/etc/my.cnf.d/my%I.cnf [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 ## # 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 # Requires kernel 4.14 or later and SELinux transition rule for mysqld_t # (https://github.com/systemd/systemd/issues/3845) # NoNewPrivileges=true # Prevent accessing /home, /root and /run/user ProtectHome=true # Needed to create system tables etc. --rpm to not do pam permission changes. ExecStartPre=/usr/bin/mariadb-install-db $MYSQLD_MULTI_INSTANCE --rpm # Start main service # A few variables are here: # * MYSQLD_MULTI_INSTANCE - control how multiple instances are distinguisable # * MYSQLD_OPTS - user definable extras - not a replacement for my.cnf # # Note 1: Place $MYSQLD_OPTS at the very end for its options to take precedence. ExecStart=/usr/sbin/mariadbd $MYSQLD_MULTI_INSTANCE $MYSQLD_OPTS 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 below [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 # if you need a longer timeout, check the KB: # 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% # Controlling how multiple instances are separated. See top of this file. # Note: This service isn't User=mysql by default so we need to be explicit. # It is as an option here as a user may want to use the MYSQLD_MULTI_INSTANCE # to run multiple versions. Environment='MYSQLD_MULTI_INSTANCE=--defaults-group-suffix=.%I' # While you can override these, you shouldn't leave them empty as that # will default to root. User=mysql Group=mysql ## ## 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=
[+]
..
[-] time-sync.target
[edit]
[-] dracut-shutdown.service
[edit]
[-] dnf-makecache.timer
[edit]
[-] rpcbind.socket
[edit]
[-] nrpe.service
[edit]
[-] systemd-suspend.service
[edit]
[-] irqbalance.service
[edit]
[-] mdmonitor.service
[edit]
[-] systemd-journald-audit.socket
[edit]
[-] dracut-pre-pivot.service
[edit]
[-] plymouth-reboot.service
[edit]
[-] unbound-anchor.service
[edit]
[-] systemd-rfkill.socket
[edit]
[-] imunify-antivirus-user.socket
[edit]
[-] mdcheck_continue.timer
[edit]
[-] proc-sys-fs-binfmt_misc.mount
[edit]
[-] systemd-vconsole-setup.service
[edit]
[-] boot-complete.target
[edit]
[-] systemd-remount-fs.service
[edit]
[-] getty.target
[edit]
[+]
poweroff.target.wants
[-] alt-php74-fpm.service
[edit]
[-] smartd.service
[edit]
[-] criu.service
[edit]
[-] iprutils.target
[edit]
[-] alt-php81-newrelic-daemon.service
[edit]
[-] NetworkManager-dispatcher.service
[edit]
[-] slices.target
[edit]
[-] sssd-sudo.service
[edit]
[-] tuned.service
[edit]
[-] tcsd.service
[edit]
[-] sssd-pam.service
[edit]
[+]
sysinit.target.wants
[-] man-db-restart-cache-update.service
[edit]
[-] systemd-user-sessions.service
[edit]
[-] halt-local.service
[edit]
[-] imunify-agent-proxy.socket
[edit]
[-] lvestats-burstwatcher.service
[edit]
[-] lve.service
[edit]
[-] unbound-anchor.timer
[edit]
[-] iprinit.service
[edit]
[-] sssd-nss.socket
[edit]
[-] systemd-journald.service
[edit]
[-] sssd-pam-priv.socket
[edit]
[-] lvestats.service
[edit]
[-] system-update-pre.target
[edit]
[-] systemd-fsck-root.service
[edit]
[-] mdmon@.service
[edit]
[-] local-fs.target
[edit]
[-] firewalld.service
[edit]
[-] libcare-autostart.service
[edit]
[-] zabbix-agent.service
[edit]
[-] mdadm-last-resort@.timer
[edit]
[-] mariadb.service
[edit]
[-] smartcard.target
[edit]
[-] vmtoolsd.service
[edit]
[-] criu.socket
[edit]
[-] puppet.service
[edit]
[-] runlevel2.target
[edit]
[-] sshd.socket
[edit]
[-] initrd-parse-etc.service
[edit]
[-] dnf-makecache.service
[edit]
[-] mariadb-extra@.socket
[edit]
[-] initrd.target
[edit]
[-] mdcheck_continue.service
[edit]
[-] httpd.service
[edit]
[-] systemd-ask-password-console.path
[edit]
[-] alt-php73-newrelic-daemon.service
[edit]
[-] rpc-statd.service
[edit]
[-] timers.target
[edit]
[-] sound.target
[edit]
[-] runlevel4.target
[edit]
[-] dracut-pre-mount.service
[edit]
[+]
default.target.wants
[-] kdump.service
[edit]
[-] atop-rotate.service
[edit]
[-] alt-php72-newrelic-daemon.service
[edit]
[-] fstrim.service
[edit]
[-] nis-domainname.service
[edit]
[-] systemd-ask-password-plymouth.service
[edit]
[-] systemd-resolved.service
[edit]
[-] emergency.service
[edit]
[-] systemd-halt.service
[edit]
[-] sys-kernel-debug.mount
[edit]
[-] mdcheck_start.timer
[edit]
[-] systemd-timedated.service
[edit]
[-] initrd-switch-root.service
[edit]
[+]
runlevel3.target.wants
[-] dnf-system-upgrade-cleanup.service
[edit]
[-] dbus.socket
[edit]
[-] alt-php53-fpm.service
[edit]
[-] systemd-udevd.service
[edit]
[-] systemd-reboot.service
[edit]
[-] exit.target
[edit]
[-] systemd-binfmt.service
[edit]
[-] atopacct.service
[edit]
[-] systemd-coredump.socket
[edit]
[-] systemd-initctl.service
[edit]
[+]
graphical.target.wants
[-] imunify-agent-proxy.service
[edit]
[-] systemd-modules-load.service
[edit]
[-] sysstat-collect.timer
[edit]
[-] postgresql@.service
[edit]
[-] nss-lookup.target
[edit]
[-] etckeeper.service
[edit]
[-] auditd.service
[edit]
[-] sigpwr.target
[edit]
[-] lvestats-burstwatcher-config.service
[edit]
[-] alt-php84-newrelic-daemon.service
[edit]
[-] nftables.service
[edit]
[+]
rescue.target.wants
[-] remote-cryptsetup.target
[edit]
[-] var-lib-nfs-rpc_pipefs.mount
[edit]
[+]
user-.slice.d
[-] systemd-hibernate.service
[edit]
[-] debug-shell.service
[edit]
[-] plymouth-read-write.service
[edit]
[-] netconsole.service
[edit]
[-] chronyd.service
[edit]
[-] polkit.service
[edit]
[-] cpupower.service
[edit]
[-] initrd-root-fs.target
[edit]
[-] gssproxy.service
[edit]
[-] nfs-server.service
[edit]
[-] systemd-journald.socket
[edit]
[-] sssd-autofs.service
[edit]
[-] sssd-ssh.service
[edit]
[-] hc-process-housekeeper.service
[edit]
[-] proxyexecd.service
[edit]
[-] sssd-ssh.socket
[edit]
[+]
sockets.target.wants
[-] td-agent-bit.service
[edit]
[+]
systemd-logind.service.d
[-] dracut-shutdown-onfailure.service
[edit]
[-] NetworkManager-wait-online.service
[edit]
[-] poweroff.target
[edit]
[-] runlevel0.target
[edit]
[-] systemd-pstore.service
[edit]
[-] runlevel5.target
[edit]
[-] serial-getty@.service
[edit]
[-] pxp-agent.service
[edit]
[-] aibolit-resident.service
[edit]
[-] alt-php81-fpm.service
[edit]
[+]
initrd.target.wants
[-] etckeeper.timer
[edit]
[-] mariadb@.service
[edit]
[-] mdcheck_start.service
[edit]
[-] imunify-antivirus.socket
[edit]
[-] lsapi-cache.service
[edit]
[-] rescue.target
[edit]
[-] lshttpd.service
[edit]
[-] autovt@.service
[edit]
[-] kmod-static-nodes.service
[edit]
[-] chrony-wait.service
[edit]
[-] dev-hugepages.mount
[edit]
[-] fancontrol.service
[edit]
[-] haproxy-int.service
[edit]
[-] systemd-hibernate-resume@.service
[edit]
[-] systemd-tmpfiles-setup.service
[edit]
[-] multi-user.target
[edit]
[-] arp-ethers.service
[edit]
[-] sssd-pac.socket
[edit]
[-] vgauthd.service
[edit]
[-] microcode.service
[edit]
[-] bird.service
[edit]
[-] alt-php70-newrelic-daemon.service
[edit]
[-] systemd-hwdb-update.service
[edit]
[+]
runlevel2.target.wants
[-] proc-sys-fs-binfmt_misc.automount
[edit]
[-] alt-php72-fpm.service
[edit]
[-] dracut-initqueue.service
[edit]
[-] aibolit-resident.socket
[edit]
[-] dnf-system-upgrade.service
[edit]
[-] cagefs.service
[edit]
[-] plymouth-poweroff.service
[edit]
[-] nfs-mountd.service
[edit]
[-] rpc-gssd.service
[edit]
[-] runlevel6.target
[edit]
[-] kvm_stat.service
[edit]
[-] systemd-ask-password-wall.service
[edit]
[-] systemd-journal-flush.service
[edit]
[+]
mariadb@bootstrap.service.d
[-] plymouth-switch-root-initramfs.service
[edit]
[+]
reboot.target.wants
[-] alt-php85-fpm.service
[edit]
[-] alt-php70-fpm.service
[edit]
[+]
remote-fs.target.wants
[-] umount.target
[edit]
[+]
local-fs.target.wants
[-] systemd-udev-trigger.service
[edit]
[-] libcare.socket
[edit]
[-] systemd-poweroff.service
[edit]
[-] atop.service
[edit]
[+]
timers.target.wants
[-] shutdown.target
[edit]
[-] selinux-autorelabel-mark.service
[edit]
[-] halt.target
[edit]
[-] firebird.service
[edit]
[+]
multi-user.target.wants
[-] dbus.service
[edit]
[-] plymouth-quit.service
[edit]
[-] nscd.service
[edit]
[-] proc-fs-nfsd.mount
[edit]
[-] ebtables.service
[edit]
[+]
dbus.target.wants
[-] mysqld.service
[edit]
[-] mariadb@.socket
[edit]
[-] sysstat-summary.service
[edit]
[-] systemd-update-done.service
[edit]
[-] remote-fs-pre.target
[edit]
[-] systemd-sysusers.service
[edit]
[-] sshd_priv.service
[edit]
[-] alt-php80-newrelic-daemon.service
[edit]
[-] mdadm-grow-continue@.service
[edit]
[-] haproxy.service
[edit]
[-] nfs-idmapd.service
[edit]
[-] nscd.socket
[edit]
[-] syslog.socket
[edit]
[-] imunify-antivirus.service
[edit]
[-] systemd-ask-password-plymouth.path
[edit]
[-] chrony-dnssrv@.timer
[edit]
[-] timedatex.service
[edit]
[-] alt-php83-fpm.service
[edit]
[-] sysstat-collect.service
[edit]
[-] alt-php71-newrelic-daemon.service
[edit]
[+]
initrd-switch-root.target.wants
[-] mariadb-extra.socket
[edit]
[-] iprdump.service
[edit]
[-] var-lve-dbgovernor\x2dshm.mount
[edit]
[-] named.service
[edit]
[-] user.slice
[edit]
[-] user-runtime-dir@.service
[edit]
[-] alt-php85-newrelic-daemon.service
[edit]
[-] rpc-statd-notify.service
[edit]
[-] emergency.target
[edit]
[-] initrd-switch-root.target
[edit]
[-] graphical.target
[edit]
[-] loadmodules.service
[edit]
[-] sssd-sudo.socket
[edit]
[-] suspend.target
[edit]
[-] runlevel1.target
[edit]
[-] httpd.service.ls_bak_bak
[edit]
[-] selinux-autorelabel.target
[edit]
[-] dracut-cmdline.service
[edit]
[-] rrdcached.service
[edit]
[-] reboot.target
[edit]
[-] systemd-hostnamed.service
[edit]
[-] sssd.service
[edit]
[-] bluetooth.target
[edit]
[-] hybrid-sleep.target
[edit]
[-] sssd-autofs.socket
[edit]
[-] sssd-kcm.service
[edit]
[-] garb.service
[edit]
[-] rescue.service
[edit]
[-] user@.service
[edit]
[-] systemd-initctl.socket
[edit]
[-] local-fs-pre.target
[edit]
[-] systemd-localed.service
[edit]
[-] nvmefc-boot-connections.service
[edit]
[-] alt-php56-fpm.service
[edit]
[-] alt-php82-fpm.service
[edit]
[-] lfd.service
[edit]
[-] sshd@.service
[edit]
[-] sssd-kcm.socket
[edit]
[-] basic.target
[edit]
[-] alt-php82-newrelic-daemon.service
[edit]
[-] remote-fs.target
[edit]
[-] import-state.service
[edit]
[-] systemd-random-seed.service
[edit]
[-] system-update.target
[edit]
[-] initrd-udevadm-cleanup-db.service
[edit]
[-] systemd-tmpfiles-clean.timer
[edit]
[-] alt-php84-fpm.service
[edit]
[-] mariadb.socket
[edit]
[-] paths.target
[edit]
[+]
system-update.target.wants
[+]
runlevel4.target.wants
[-] dracut-pre-udev.service
[edit]
[-] network.target
[edit]
[-] systemd-fsck@.service
[edit]
[-] sshd-keygen@.service
[edit]
[-] alt-php54-fpm.service
[edit]
[-] network-online.target
[edit]
[-] console-getty.service
[edit]
[-] rhnsd.service
[edit]
[-] crond.service
[edit]
[-] alt-php74-newrelic-daemon.service
[edit]
[-] ctrl-alt-del.target
[edit]
[-] kcare.service
[edit]
[-] nvmf-autoconnect.service
[edit]
[+]
syslog.target.wants
[-] rpcbind.target
[edit]
[-] ssa-agent.socket
[edit]
[-] sshd-keygen.target
[edit]
[-] systemd-logind.service
[edit]
[-] initrd-fs.target
[edit]
[-] auth-rpcgss-module.service
[edit]
[-] alt-php71-fpm.service
[edit]
[-] cryptsetup-pre.target
[edit]
[-] htcacheclean.service
[edit]
[-] sysinit.target
[edit]
[-] plymouth-kexec.service
[edit]
[-] systemd-tmpfiles-clean.service
[edit]
[-] mysql.service
[edit]
[-] nfs-convert.service
[edit]
[-] dracut-mount.service
[edit]
[-] alt-php80-fpm.service
[edit]
[-] governor_sentry_daemon.service
[edit]
[-] db_governor.service
[edit]
[-] nvmf-connect.target
[edit]
[-] printer.target
[edit]
[-] fstrim.timer
[edit]
[-] rsyslog.service
[edit]
[-] systemd-udevd-kernel.socket
[edit]
[-] cxswatch.service
[edit]
[-] lsws.service
[edit]
[-] network-pre.target
[edit]
[-] plymouth-halt.service
[edit]
[+]
basic.target.wants
[-] hibernate.target
[edit]
[+]
kexec.target.wants
[-] sockets.target
[edit]
[-] systemd-portabled.service
[edit]
[-] nvmf-connect@.service
[edit]
[-] ssa-agent.service
[edit]
[-] default.target
[edit]
[-] mdadm-last-resort@.service
[edit]
[-] plymouth-start.service
[edit]
[-] quotaon.service
[edit]
[-] systemd-sysctl.service
[edit]
[-] postgresql.service
[edit]
[-] dbus-org.freedesktop.timedate1.service
[edit]
[-] runlevel3.target
[edit]
[-] systemd-volatile-root.service
[edit]
[-] chrony-dnssrv@.service
[edit]
[-] mdmonitor-oneshot.service
[edit]
[-] alt-php73-fpm.service
[edit]
[-] systemd-suspend-then-hibernate.service
[edit]
[-] kexec.target
[edit]
[-] imunify-antivirus-sensor.socket
[edit]
[-] dbus-org.freedesktop.hostname1.service
[edit]
[-] selinux-autorelabel.service
[edit]
[-] libcare.service
[edit]
[+]
runlevel5.target.wants
[-] lm_sensors.service
[edit]
[-] sssd-pam.socket
[edit]
[-] lve_namespaces.service
[edit]
[-] rrdcached.socket
[edit]
[-] sysstat-summary.timer
[edit]
[-] ipmi.service
[edit]
[-] container-getty@.service
[edit]
[-] plymouth-quit-wait.service
[edit]
[-] systemd-ask-password-console.service
[edit]
[-] nfs-utils.service
[edit]
[-] systemd-ask-password-wall.path
[edit]
[-] sssd-nss.service
[edit]
[-] systemd-journald-dev-log.socket
[edit]
[-] systemd-coredump@.service
[edit]
[-] tmp.mount
[edit]
[+]
halt.target.wants
[-] imunify-notifier.socket
[edit]
[-] atop-rotate.timer
[edit]
[-] systemd-journal-catalog-update.service
[edit]
[-] swap.target
[edit]
[-] rc-local.service
[edit]
[-] ldconfig.service
[edit]
[-] mdmonitor-oneshot.timer
[edit]
[-] systemd-backlight@.service
[edit]
[-] sysstat.service
[edit]
[-] nfs-client.target
[edit]
[-] systemd-kexec.service
[edit]
[-] initrd-cleanup.service
[edit]
[-] httpd.service.ls_bak
[edit]
[-] lvemanager.service
[edit]
[-] sys-kernel-config.mount
[edit]
[-] sys-fs-fuse-connections.mount
[edit]
[-] system-update-cleanup.service
[edit]
[-] final.target
[edit]
[-] man-db-cache-update.service
[edit]
[-] rpcbind.service
[edit]
[-] alt-php55-fpm.service
[edit]
[-] nfs-blkmap.service
[edit]
[-] getty-pre.target
[edit]
[-] atd.service
[edit]
[-] systemd-hybrid-sleep.service
[edit]
[-] rpc_pipefs.target
[edit]
[+]
runlevel1.target.wants
[-] rdisc.service
[edit]
[-] systemd-update-utmp-runlevel.service
[edit]
[-] initrd-root-device.target
[edit]
[-] suspend-then-hibernate.target
[edit]
[-] systemd-machine-id-commit.service
[edit]
[-] sshd.service
[edit]
[-] systemd-firstboot.service
[edit]
[-] systemd-udev-settle.service
[edit]
[-] messagebus.service
[edit]
[-] teamd@.service
[edit]
[-] csf.service
[edit]
[-] plymouth-switch-root.service
[edit]
[-] nss-user-lookup.target
[edit]
[-] dbus-org.freedesktop.portable1.service
[edit]
[-] systemd-exit.service
[edit]
[-] dbus-org.freedesktop.locale1.service
[edit]
[-] systemd-udevd-control.socket
[edit]
[-] sleep.target
[edit]
[-] dracut-pre-trigger.service
[edit]
[-] getty@.service
[edit]
[-] systemd-tmpfiles-setup-dev.service
[edit]
[-] dev-mqueue.mount
[edit]
[-] grub-boot-indeterminate.service
[edit]
[-] named-setup-rndc.service
[edit]
[+]
rsyslog.service.d
[-] saslauthd.service
[edit]
[-] sssd-pac.service
[edit]
[-] systemd-quotacheck.service
[edit]
[-] systemd-update-utmp.service
[edit]
[-] cryptsetup.target
[edit]
[-] alt-php83-newrelic-daemon.service
[edit]
[-] iprupdate.service
[edit]
[-] dbus-org.freedesktop.login1.service
[edit]
[-] NetworkManager.service
[edit]
[-] qemu-guest-agent.service
[edit]
[-] imunify-notifier.service
[edit]
[-] nfsdcld.service
[edit]
[+]
systemd-udev-trigger.service.d
[-] systemd-rfkill.service
[edit]
[-] lvectl.service
[edit]