广告
返回顶部
首页 > 资讯 > 数据库 >centos7 systemctl 管理 mysql
  • 798
分享到

centos7 systemctl 管理 mysql

2024-04-02 19:04:59 798人浏览 薄情痞子
摘要

Centos 7 开始使用systemctl 管理服务服务脚本目录 /etc/systemd/system/Mysql.service脚本如下:## Simple mysql systemd service

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 设置


[root@c52cbe15cfa3 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


[root@c52cbe15cfa3 system]# pw




您可能感兴趣的文档:

--结束END--

本文标题: centos7 systemctl 管理 mysql

本文链接: https://www.lsjlt.com/news/44886.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

本篇文章演示代码以及资料文档资料下载

下载Word文档到电脑,方便收藏和打印~

下载Word文档
猜你喜欢
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作