检测mysql是否在运行

#!/bin/bash

pgrep -x mysqld &> /dev/null
if [ $? -ne 0 ];then
/etc/init.d/mysqld start
fi


发表评论

电子邮件地址不会被公开。 必填项已用*标注