mariadb/mariadb.service.in

52 lines
1.8 KiB
SYSTEMD
Raw Normal View History

2013-01-10 17:35:12 +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
# best way is to create a file "/etc/systemd/system/mariadb.service",
2013-01-10 17:35:12 +00:00
# containing
# .include /lib/systemd/system/mariadb.service
2013-01-10 17:35:12 +00:00
# ...make your changes here...
# or create a file "/etc/systemd/system/mariadb.service.d/foo.conf",
2013-07-30 12:27:58 +00:00
# which doesn't need to include ".include" call and which will be parsed
# after the file mariadb.service itself is parsed.
2013-07-30 12:27:58 +00:00
#
# For more info about custom unit files, see systemd.unit(5) or
2013-01-10 17:35:12 +00:00
# http://fedoraproject.org/wiki/Systemd#How_do_I_customize_a_unit_file.2F_add_a_custom_unit_file.3F
# For example, if you want to increase mysql's open-files-limit to 10000,
# you need to increase systemd's LimitNOFILE setting, so create a file named
# "/etc/systemd/system/mariadb.service.d/limits.conf" containing:
2013-01-10 17:35:12 +00:00
# [Service]
# LimitNOFILE=10000
# Note: /usr/lib/... is recommended in the .include line though /lib/...
2013-07-30 12:27:58 +00:00
# still works.
# Don't forget to reload systemd daemon after you change unit configuration:
# root> systemctl --system daemon-reload
2013-01-10 17:35:12 +00:00
[Unit]
Description=MariaDB @MAJOR_VERSION@.@MINOR_VERSION@ database server
2013-01-10 17:35:12 +00:00
After=syslog.target
After=network.target
BindsTo=@DAEMON_NAME2@.service
2013-01-10 17:35:12 +00:00
[Service]
Type=simple
User=mysql
Group=mysql
ExecStartPre=@libexecdir@/mariadb-check-socket
ExecStartPre=@libexecdir@/mariadb-prepare-db-dir %n
2013-01-10 17:35:12 +00:00
# Note: we set --basedir to prevent probes that might trigger SELinux alarms,
# per bug #547485
ExecStart=@bindir@/mysqld_safe --basedir=@prefix@
ExecStartPost=@libexecdir@/mariadb-wait-ready $MAINPID
2013-01-10 17:35:12 +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
[Install]
WantedBy=multi-user.target
Also=@DAEMON_NAME2@.service