2017-07-31 16:16:50 +00:00
|
|
|
# It's not recommended to modify this file in-place, because it will be
|
|
|
|
# overwritten during package upgrades. If you want to customize, the
|
2018-04-26 08:27:31 +00:00
|
|
|
# best way is to use systemctl edit:
|
|
|
|
#
|
|
|
|
# $ systemctl edit @DAEMON_NAME@.service
|
|
|
|
#
|
|
|
|
# this will create file
|
|
|
|
#
|
|
|
|
# /etc/systemd/system/@DAEMON_NAME@.service.d/override.conf
|
|
|
|
#
|
|
|
|
# which be parsed after the file @DAEMON_NAME@.service itself is parsed.
|
|
|
|
#
|
|
|
|
# For example, if you want to increase mysql's open-files-limit to 20000
|
|
|
|
# add following when editing with command above:
|
2017-07-31 16:16:50 +00:00
|
|
|
#
|
|
|
|
# [Service]
|
2018-04-26 08:27:31 +00:00
|
|
|
# LimitNOFILE=20000
|
|
|
|
#
|
2017-07-31 16:16:50 +00:00
|
|
|
# Or if you require to execute pre and post scripts in the unit file as root, set
|
|
|
|
# PermissionsStartOnly=true
|
2018-04-26 08:27:31 +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
|
|
|
|
#
|
2017-07-31 16:16:50 +00:00
|
|
|
# Don't forget to reload systemd daemon after you change unit configuration:
|
|
|
|
# root> systemctl --system daemon-reload
|
|
|
|
|
|
|
|
[Unit]
|
|
|
|
Description=@NICE_PROJECT_NAME@ @MAJOR_VERSION@.@MINOR_VERSION@ database server
|
|
|
|
After=syslog.target
|
|
|
|
After=network.target
|
|
|
|
|
|
|
|
[Service]
|
2018-04-26 08:27:31 +00:00
|
|
|
Type=notify
|
2017-07-31 16:16:50 +00:00
|
|
|
User=mysql
|
|
|
|
Group=mysql
|
|
|
|
|
2017-08-28 15:07:05 +00:00
|
|
|
ExecStartPre=@libexecdir@/mysql-check-socket --defaults-group-suffix=.%I
|
|
|
|
ExecStartPre=@libexecdir@/mysql-prepare-db-dir --defaults-group-suffix=.%I %n
|
2017-07-31 16:16:50 +00:00
|
|
|
# Note: we set --basedir to prevent probes that might trigger SELinux alarms,
|
|
|
|
# per bug #547485
|
2018-04-26 08:27:31 +00:00
|
|
|
ExecStart=@bindir@/mysqld --defaults-group-suffix=.%I --basedir=@prefix@
|
2017-08-28 15:07:05 +00:00
|
|
|
ExecStartPost=@libexecdir@/mysql-check-upgrade --defaults-group-suffix=.%I
|
|
|
|
ExecStopPost=@libexecdir@/mysql-wait-stop --defaults-group-suffix=.%I
|
2017-07-31 16:16:50 +00:00
|
|
|
|
|
|
|
# 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
|
|
|
|
|
|
|
|
Restart=on-failure
|
|
|
|
|
|
|
|
RestartPreventExitStatus=1
|
|
|
|
|
2018-04-26 08:27:31 +00:00
|
|
|
# Sets open_files_limit
|
|
|
|
LimitNOFILE = 10000
|
|
|
|
|
|
|
|
# Set enviroment variable MYSQLD_PARENT_PID. This is required for SQL restart command.
|
|
|
|
Environment=MYSQLD_PARENT_PID=1
|
|
|
|
|
2017-07-31 16:16:50 +00:00
|
|
|
[Install]
|
|
|
|
WantedBy=multi-user.target
|