php判断进程是否存在
摘要:
//计划任务定时检测master进程是否存在,不存在则启动,以root用户运行 public function checkMaster() { $cmd = 'ps axu|grep "UctDataWorker masterRun"|grep -v "grep"|wc -l'; $ret = shell_exec("$cmd"); ... 阅读全文
posted @ 2017-02-14 13:08 dongruiha 阅读(4894) 评论(0) 推荐(0) 编辑