宝塔后台有计划任务功能,可以定时清理内存,备份数据,并且自带了php502守护插件,但是有时mysql服务会停止,需要建一个计划任务去定时检测mysql状态,如果停止了就重启。
文章源自国外主机测评-https://www.zjcp.org/1895.html
宝塔面板下载:
https://www.bt.cn/new/index.html文章源自国外主机测评-https://www.zjcp.org/1895.html
计划任务添加mysql守护脚本:
文章源自国外主机测评-https://www.zjcp.org/1895.html
代码如下:
pgrep -x mysqld &> /dev/null if [ $? -ne 0 ];then bash /www/server/panel/script/rememory.sh /etc/init.d/mysqld start fi
/etc/init.d/mysqld restart
文章源自国外主机测评-https://www.zjcp.org/1895.html文章源自国外主机测评-https://www.zjcp.org/1895.html