2021-04-22 02:08:08 +00:00
|
|
|
# Multi instance version of MariaDB. For if you run mutiple verions at once.
|
2016-02-11 10:58:28 +00:00
|
|
|
# Also used for @DAEMON_NAME@@bootstrap to bootstrap Galera.
|
|
|
|
#
|
2021-04-22 02:08:08 +00:00
|
|
|
# To use multi instance variant, use [mariadbd.INSTANCENAME] as sections in
|
|
|
|
# @sysconfdir@/@my.cnf to change per instance settings. A minimumal necessary
|
|
|
|
# configuration items to change to avoid conflicts between instances is:
|
|
|
|
#
|
|
|
|
# [mariadbd.instancename]
|
|
|
|
# # TCP port to make available for clients
|
|
|
|
# port=3306
|
|
|
|
# # Socket to make available for clients
|
|
|
|
# socket=/tmp/mariadb-instancename.sock
|
|
|
|
# # Where MariaDB should store all its data
|
|
|
|
# datadir=/usr/local/mariadb-instancename/data
|
|
|
|
#
|
2016-02-11 10:58:28 +00:00
|
|
|
# and start the service via:
|
2021-04-22 02:08:08 +00:00
|
|
|
#
|
|
|
|
# root> systemctl start @DAEMON_NAME@@{instancename}.server
|
2016-02-11 10:58:28 +00:00
|
|
|
#
|
|
|
|
# It's not recommended to modify this file in-place, because it will be
|
2021-04-22 02:08:08 +00:00
|
|
|
# overwritten during package upgrades. If you want to customize, for
|
|
|
|
# all instances, the best way is:
|
|
|
|
#
|
|
|
|
# root> systemctl edit @DAEMON_NAME@@.service
|
|
|
|
#
|
|
|
|
# Then add additonal directives under a section (probably [Service]).
|
|
|
|
#
|
|
|
|
# If you only want to change a specific instance:
|
|
|
|
#
|
|
|
|
# root> systemctl edit @DAEMON_NAME@@{instancename}.server
|
2016-02-11 10:58:28 +00:00
|
|
|
#
|
|
|
|
# For more info about custom unit files, see systemd.unit(5) or
|
|
|
|
# http://fedoraproject.org/wiki/Systemd#How_do_I_customize_a_unit_file.2F_add_a_custom_unit_file.3F
|
2021-04-22 02:08:08 +00:00
|
|
|
#
|
|
|
|
# For example, if you want to increase MariaDB's open-files-limit to 10000,
|
|
|
|
# you need to increase systemd's LimitNOFILE setting, use the contents below:
|
|
|
|
#
|
2016-02-11 10:58:28 +00:00
|
|
|
# [Service]
|
|
|
|
# LimitNOFILE=10000
|
|
|
|
|
|
|
|
[Unit]
|
|
|
|
Description=@NICE_PROJECT_NAME@ @MAJOR_VERSION@.@MINOR_VERSION@ database server
|
2021-04-21 08:30:46 +00:00
|
|
|
Documentation=man:mariadbd(8)
|
2018-05-27 23:52:06 +00:00
|
|
|
Documentation=https://mariadb.com/kb/en/library/systemd/
|
2016-02-11 10:58:28 +00:00
|
|
|
After=network.target
|
|
|
|
|
2018-05-27 23:52:06 +00:00
|
|
|
[Install]
|
|
|
|
WantedBy=multi-user.target
|
|
|
|
Alias=mysql.service
|
|
|
|
Alias=mysqld.service
|
|
|
|
|
2016-02-11 10:58:28 +00:00
|
|
|
[Service]
|
|
|
|
Type=notify
|
|
|
|
User=mysql
|
|
|
|
Group=mysql
|
|
|
|
|
2021-04-21 08:30:46 +00:00
|
|
|
ExecStartPre=@libexecdir@/mariadb-check-socket --defaults-group-suffix=.%I
|
|
|
|
ExecStartPre=@libexecdir@/mariadb-prepare-db-dir --defaults-group-suffix=.%I %n
|
2016-02-11 10:58:28 +00:00
|
|
|
# MYSQLD_OPTS here is for users to set in /etc/systemd/system/@DAEMON_NAME@@.service.d/MY_SPECIAL.conf
|
|
|
|
# Note: we set --basedir to prevent probes that might trigger SELinux alarms,
|
|
|
|
# per bug #547485
|
2021-04-21 08:30:46 +00:00
|
|
|
ExecStart=@libexecdir@/mariadbd --defaults-group-suffix=.%I --basedir=@prefix@ $MYSQLD_OPTS $_WSREP_NEW_CLUSTER
|
|
|
|
ExecStartPost=@libexecdir@/mariadb-check-upgrade --defaults-group-suffix=.%I
|
2016-02-11 10:58:28 +00:00
|
|
|
|
|
|
|
# Setting this to true can break replication and the Type=notify settings
|
2021-04-21 08:30:46 +00:00
|
|
|
# See also bind-address MariaDB option.
|
2016-02-11 10:58:28 +00:00
|
|
|
PrivateNetwork=false
|
|
|
|
|
|
|
|
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-abort
|
|
|
|
RestartSec=5s
|
|
|
|
|
|
|
|
UMask=007
|
|
|
|
|
|
|
|
# Give a reasonable amount of time for the server to start up/shut down
|
|
|
|
TimeoutSec=300
|
|
|
|
|
|
|
|
# Place temp files in a secure directory, not /tmp
|
|
|
|
PrivateTmp=true
|