centos7 systemctl 管理 mysql
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了centos7 systemctl 管理 mysql相关的知识,希望对你有一定的参考价值。
centos 7 开始使用systemctl 管理服务
服务脚本目录 /etc/systemd/system/mysql.service
脚本如下:
#
# Simple MySQL systemd service file
#
# systemd supports lots of fancy features, look here (and linked docs) for a full list:
# http://www.freedesktop.org/software/systemd/man/systemd.exec.html
#
# Note: this file ( /usr/lib/systemd/system/mysql.service )
# will be overwritten on package upgrade, please copy the file to
#
# /etc/systemd/system/mysql.service
#
# to make needed changes.
#
# systemd-delta can be used to check differences between the two mysql.service files.
#
[Unit]
Description=MySQL Community Server
After=network.target
After=syslog.target
[Install]
WantedBy=multi-user.target
Alias=mysql.service
[Service]
User=mysql
Group=mysql
# Execute pre and post scripts as root
PermissionsStartOnly=true
# Needed to create system tables etc.
#ExecStartPre=/usr/bin/mysql-systemd-start pre
# Start main service
ExecStart=/application/mysql/bin/mysqld_safe
# Don‘t signal startup success before a ping works
#ExecStartPost=/usr/bin/mysql-systemd-start post
# Give up if ping don‘t get an answer
TimeoutSec=600
Restart=always
PrivateTmp=false
---
mysqld_pre_systemd
(RPM platforms), mysql-system-start
(Debian platforms): Support script for the unit file. This script assists in creating the error log file only if the log location matches a pattern (/var/log/mysql*.log
for RPM platforms, /var/log/mysql/*.log
for Debian platforms). In other cases, the error log directory must be writable or the error log must be present and writable for the user running the mysqld process.
如果 mysql error log 设置在 /var/log 下
以下是percona mysql 设置
[[email protected] system]# cat mysqld.service
#
# Systemd service file for Percona Server
#
# # This service file is to start PS just with mysqld_safe
#
[Unit]
Description=MySQL Percona Server
After=network.target
After=syslog.target
[Install]
WantedBy=multi-user.target
Alias=mysql.service
[Service]
# Execute pre and post scripts as root
PermissionsStartOnly=true
# Needed to create system tables etc.
ExecStartPre=/usr/bin/mysql-systemd pre
# Start main service
ExecStart=/usr/bin/mysqld_safe
# Don‘t signal startup success before a ping works
ExecStartPost=/usr/bin/mysql-systemd post
# Give up if ping don‘t get an answer
TimeoutSec=600
Restart=always
PrivateTmp=false
[[email protected] system]# pw
以上是关于centos7 systemctl 管理 mysql的主要内容,如果未能解决你的问题,请参考以下文章
CentOS7.5下开发systemctl管理的自定义Rsync启动服务程序
centos7 中 systemd systemctl管理服务的命令
CentOS7 下面使用systemctl 来管理tomcat服务