为什么每次关机都要关闭mysql_在机器关机时关闭mysql服务实例
想讓配置修改過的mysql能在機(jī)器關(guān)機(jī)或重啟時能先停止mysql進(jìn)程,防止數(shù)據(jù)異常
在/etc/init.d/下添加腳本,如下:#!/bin/sh### BEGIN INIT INFO# Provides: ? ? ? ? ?test_shutdown# Required-Start: ? ?$syslog# Should-Start: $time# Required-Stop: ? ? $syslog# Should-Stop: $time# Default-Start: ? ? 3 5# Default-Stop: ? ? ?0 1 2 6# Short-Description: test_shutdown# Description: ? ? ? test_shutdown### END INIT INFOcase "$1" in start) echo "start" >>/tmp/test.log sleep 1;; stop) echo "begin stop" >>/tmp/test.log su - test -c "/home/test/scripts/shutdown.sh" echo "done stop" >>/tmp/test.log ;; *) echo "other" >>/tmp/test.logesac執(zhí)行 chkconfig test_shutdown on
總結(jié)
以上是生活随笔為你收集整理的为什么每次关机都要关闭mysql_在机器关机时关闭mysql服务实例的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: mysql io depth_MySQL
- 下一篇: mysql 5.6 主从同步配置_Mys