上传者: 38665804
|
上传时间: 2022-07-20 17:12:54
|
文件大小: 44KB
|
文件类型: PDF
目的:
linux 下服务器程序会因为各种原因dump掉,就会影响用户使用,这里提供一个简单的进程监控和重启功能。
实现原理:
由定时任务crontab调用脚本,脚本用ps检查进程是否存在,如果不存在则重启并写入日志。
crontab修改
# crontab -e
*/5 * * * * /mnt/bindmonitor.sh
/mnt/bindmonitor.sh 的实现
#! /bin/sh
host_dir=`echo ~` # 当前用户根目录
proc_name=/home/wkubuntu/named/sbin/named # 进程名
fi