码迷,mamicode.com
首页 > 系统相关 > 详细

shell脚本监测进程并重启

时间:2020-02-12 13:04:26      阅读:79      评论:0      收藏:0      [点我收藏+]

标签:sea   shell脚本   sql   cache   ini   elastic   cse   bsp   init   

本人实例:

#!/bin/bash

ps -ef | grep elastic | grep -v grep
if [ $? -ne 0 ]
then
echo "start process......"
echo 1 > /proc/sys/vm/drop_caches
cd /data/soft/elasticsearch-6.4.0/bin/
su elsearch
./elasticsearch -d
else
echo "runing......"
fi

这是检测搜索引擎 elastic 的脚本

 


#!/bin/bash

ps -ef | grep mysqld | grep -v grep
if [ $? -ne 0 ]
then
echo "start process......"
/etc/rc.d/init.d/mysqld start
else
echo "runing......"
fi

这是检测mysql 进程的 脚本

 

shell脚本监测进程并重启

标签:sea   shell脚本   sql   cache   ini   elastic   cse   bsp   init   

原文地址:https://www.cnblogs.com/wujf-myblog/p/12298364.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!