Purpose: Under Linux, the server program may be dumped for various reasons, which will affect user use. Here we provide a simple process monitoring and restart function. Implementation principle: The script is called by the scheduled task crontab. The script uses ps to check whether the process exists. If it does not exist, it restarts and writes a log. Crontab modification # crontab -e */5 * * * * /mnt/bindmonitor.sh Implementation of /mnt/bindmonitor.sh #!/bin/sh host_dir=`echo ~` # Current user root directory proc_name="/home/wkubuntu/named/sbin/named" # Process name file_name="/mnt/bindmonitor.log" # Log file pid=0 proc_num() # Calculate the number of processes { num=`ps -ef | grep $proc_name | grep -v grep | wc -l` return $num } proc_id() # process number { pid=`ps -ef | grep $proc_name | grep -v grep | awk '{print $2}'` } proc_num number=$? if [ $number -eq 0 ] # Check if the process exists then /home/wkubuntu/named/sbin/named -c /home/wkubuntu/named/etc/named.conf -n 1 & # Command to restart the process, please modify proc_id accordingly # Get the new process ID echo ${pid}, `date` >> $file_name # Record the new process ID and restart time to file Deleting process tests a. #killall -15 named b. After 5 minutes, run cat /mnt/bindmonitor.log to see if there are any new records. The process number should correspond to the process number in # ps -ef |grep named. Summarize The above is the full content of this article. I hope that the content of this article will have certain reference learning value for your study or work. Thank you for your support of 123WORDPRESS.COM. You may also be interested in:
|
<<: Analysis of pitfalls in rounding operation of ROUND function in MySQL
>>: Vue Element front-end application development conventional Element interface components
1. What is CSS Animations is a proposed module fo...
1. Introduction Whether the creation time of a fi...
Data display has always been a demand that all wa...
Table of contents 1 System Introduction 2 System ...
The /partition utilization of a server in IDC is ...
This article introduces the sample code of CSS to...
Table of contents Preface Main implementation cod...
1. Links Hypertext links are very important in HTM...
I used the label tag when I was doing something re...
Sublime Text 2 is a lightweight, simple, efficien...
Ubuntu 18.04 installs mysql 5.7 for your referenc...
I came into contact with CSS a long time ago, but...
How to obtain SQL statements with performance iss...
Table of contents How to represent the current ti...
Today I was browsing the blog site - shoptalkshow...