機器關(guān)機或重啟前時關(guān)閉mysql服務(wù)案例代碼(收藏)
發(fā)表時間:2023-09-03 來源:明輝站整理相關(guān)軟件相關(guān)文章人氣:
[摘要]想讓配置修改過的mysql能在機器關(guān)機或重啟時能先停止mysql進程,防止數(shù)據(jù)異常在/etc/init.d/下添加腳本,如下:#!/bin/sh### BEGIN INIT INFO# Provides: test_shutdown# Required-Start: $sy...
想讓配置修改過的mysql能在機器關(guān)機或重啟時能先停止mysql進程,防止數(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 INFO
case "$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.log
esac
執(zhí)行 chkconfig test_shutdown on
以上就是機器關(guān)機或重啟前時關(guān)閉mysql服務(wù)實例代碼(收藏)的詳細內(nèi)容,更多請關(guān)注php中文網(wǎng)其它相關(guān)文章!
學(xué)習(xí)教程快速掌握從入門到精通的SQL知識。