Simple implementation method of Linux process monitoring and automatic restart

Simple implementation method of Linux process monitoring and automatic restart

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:
  • Detailed explanation of the implementation method of Linux monitoring important processes
  • Shell script to implement Linux system and process resource monitoring
  • Linux service monitoring and operation and maintenance
  • Linux operation and maintenance basic process management real-time monitoring and control

<<:  Analysis of pitfalls in rounding operation of ROUND function in MySQL

>>:  Vue Element front-end application development conventional Element interface components

Recommend

Implementation methods of common CSS3 animations

1. What is CSS Animations is a proposed module fo...

How to view the creation time of files in Linux

1. Introduction Whether the creation time of a fi...

Example of implementing circular progress bar in Vue

Data display has always been a demand that all wa...

Introduction to common commands and shortcut keys in Linux

Table of contents 1 System Introduction 2 System ...

Linux disk space release problem summary

The /partition utilization of a server in IDC is ...

Example code for CSS to achieve horizontal lines on both sides of the text

This article introduces the sample code of CSS to...

Detailed explanation of simple snow effect example using JS

Table of contents Preface Main implementation cod...

The basic use of html includes links, style sheets, span and div, etc.

1. Links Hypertext links are very important in HTM...

Analysis and solutions to problems encountered in the use of label tags

I used the label tag when I was doing something re...

Introduction to Sublime Text 2, a web front-end tool

Sublime Text 2 is a lightweight, simple, efficien...

Install mysql5.7 on Ubuntu 18.04

Ubuntu 18.04 installs mysql 5.7 for your referenc...

CSS float (float, clear) popular explanation and experience sharing

I came into contact with CSS a long time ago, but...

MySQL SQL statement analysis and query optimization detailed explanation

How to obtain SQL statements with performance iss...

Implementation of CSS Fantastic Border Animation Effect

Today I was browsing the blog site - shoptalkshow...