25 lines
594 B
SYSTEMD
25 lines
594 B
SYSTEMD
|
[Unit]
|
||
|
Description=MySQL database server
|
||
|
After=syslog.target
|
||
|
After=network.target
|
||
|
|
||
|
[Service]
|
||
|
Type=forking
|
||
|
User=mysql
|
||
|
Group=mysql
|
||
|
|
||
|
ExecStartPre=/usr/libexec/mysqld-prepare-db-dir
|
||
|
# Note: we set --basedir to prevent probes that might trigger SELinux alarms,
|
||
|
# per bug #547485
|
||
|
ExecStart=/usr/bin/mysqld_safe --nowatch --basedir=/usr
|
||
|
ExecStartPost=/usr/libexec/mysqld-wait-ready $MAINPID
|
||
|
|
||
|
# Give a reasonable amount of time for the server to start up/shut down
|
||
|
TimeoutSec=300
|
||
|
|
||
|
# We rely on systemd, not mysqld_safe, to restart mysqld if it dies
|
||
|
Restart=always
|
||
|
|
||
|
[Install]
|
||
|
WantedBy=multi-user.target
|