linux-启动停止重启shell 简单shell示例

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux-启动停止重启shell 简单shell示例相关的知识,希望对你有一定的参考价值。

停止:

#!/bin/bash
pid=`ps -ef|grep /opt/lampp|grep -v grep|awk ‘{print $2}‘|wc -l`
b=0
if [ $pid -gt $b ]
then
ps -ef|grep /opt/lampp|grep -v grep|awk ‘{print $2}‘|xargs kill -9
echo "lammp has stopped!"
else
echo "lammp is not running!"
fi
启动:

#!/bin/bash
pid=`ps -ef|grep /opt/lampp|grep -v grep|awk ‘{print $2}‘|wc -l`
b=0
if [ $pid -gt $b ]
then
echo "lammp is already running!"
else
/opt/lampp/lampp start
echo "lammp has started!"
tail -f /opt/lampp/logs/access_log
fi

重启:

/tmp/stopl.sh
/tmp/startl.sh
~

以上是关于linux-启动停止重启shell 简单shell示例的主要内容,如果未能解决你的问题,请参考以下文章

Shell脚本_启动停止重启sh脚本

sh 从命令行macOS,OSX,Linux重启,启动,停止MySQL

Linux 启动停止重启tomcat工具(Shell脚本)

Linux下Tomcat启动,停止命令

Linux下shell脚本监控Tomcat的状态并实现自动启动

linux系统下apache服务的启动停止重启命令