时间:2021-05-22
简洁版:
#! /bin/bash# author caoxin# time 2012-10-10 # program : 判断进行是否存在,并重新启动function check(){ count=`ps -ef |grep $1 |grep -v "grep" |wc -l` #echo $count if [ 0 == $count ];then nohup python /runscript/working/$1 & fi}check behaviors.py详细版:
#!/bin/bash##调用关闭jboss进程脚本stopMethodServer.sh#打印出当前的jboss进程:grep jboss查询的jboss进程,grep -v "grep" 去掉grep进程jmsThread=`ps -ef | grep gdms | grep jboss | grep -v "grep"`echo $jmsThread#查询jboss进程个数:wc -l 返回行数count=`ps -ef | grep gdms | grep jboss | grep -v "grep" | wc -l`echo $countsec=7#开始一个循环,以判断进程是否关闭for var in 1 2do if [ $count -gt 0 ]; then #若进程还未关闭,则脚本sleep几秒 echo sleep $sec second the $var time, the JMS thread is still alive sleep $sec else #若进程已经关闭,则跳出循环 echo "break" break fidone#if [ $count -eq 0 ]; then# echo "nohup startMethodServer.sh &"# nohup startMethodServer.sh &#else# echo "It's better to check the thread!!!"#fi#调用启动脚本nohup startMethodServer.sh &声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
用shell脚本监控进程是否存在不存在则启动的实例,先上代码干货:#!/bin/shps-fe|grepprocessString|grep-vgrepif[$
要监护的进程启动脚本:实现脚本写入crontab定时任务#!/usr/bin/envbash#scheduledtaskat22:00everydayscrip
提问:我想要知道运行中脚本子shell的进程id。我该如何在shell脚本中得到PID。当我在执行shell脚本时,它会启动一个叫子shell的进程。作为主sh
FastCGI:FastCGI是从CGI发展改进而来的。传统CGI接口方式的主要缺点是性能很差,因为每次HTTP服务器遇到动态程序时都需要重新启动脚本解析器来执
shell脚本自动创建用户详解需求:判断用户zhangsan是否存在,不存在就创建并设置密码为1234561、vicreateuser.sh2、写入:USER_