Tomcat:Tomcat守护脚本:修订间差异

来自WHY42
imported>Soleverlee
以“<source lang="shell"> echo 'Tomcat deamon script started...' while true do process=`ps -ef | grep tomcat-js | grep -v grep` if [ -z "${process}" ]; then...”为内容创建页面
 
imported>Soleverlee
无编辑摘要
 
第1行: 第1行:
<source lang="shell">
<source lang="bash">
echo 'Tomcat deamon script started...'
echo 'Tomcat deamon script started...'
while true
while true

2016年2月23日 (二) 16:43的最新版本

echo 'Tomcat deamon script started...'
while true
do
    process=`ps -ef | grep tomcat-js | grep -v grep`

    if [ -z "${process}" ]; then
        echo tomcat stopped!
        echo tomcat stopped at: `date  +'%Y-%m-%d %H:%M:%S'`>> deamon.log
        echo `free -m` >> deamon.log
        /home/solee/start.sh
    else
        echo 'running...'
    fi
    sleep 10
done