美文网首页
添加自启动脚本命令行

添加自启动脚本命令行

作者: battleMonkey | 来源:发表于2019-03-17 13:27 被阅读0次

    mysql 和 redis 在 .bashrc 设置检测是否启动 ,没有的话,启动它

    if ps -ef|grep "redis"|egrep -v grep >/dev/null
    then
        echo redis is running!
    else
        service redis start
    fi
    
    if ps -ef|grep "mysql"|egrep -v grep >/dev/null
    then
        echo mysql is running!
    else
        service mysql start
    fi
    

    相关文章

      网友评论

          本文标题:添加自启动脚本命令行

          本文链接:https://www.haomeiwen.com/subject/ygqumqtx.html