判断LINUX进程是否存在

###################################################

#!/bin/bash

#判断进程是否存在,如果不存在就启动它

PIDS=`ps -ef |grep myprocess |grep -v grep | awk ‘{print $2}‘`

if [ "$PIDS" != "" ]; then

echo "myprocess is runing!"

else

cd /root/

./myprocess

#运行进程

fi

###################################################

#!/bin/bash

#判断进程是否存在,如果不存在就启动它如果存在就重启它

PIDS=`ps -ef |grep myprocess |grep -v grep | awk ‘{print $2}‘`

if [ "$PIDS" != "" ]; then

kill -9 $PIDS

#先关闭进程,在运行此进程

cd /root/myprocess

sudo ./myprocess

#重新运行进程

else

cd /root/myprocess

sudo ./myprocess

#运行进程

fi


郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。