watchdog How to restart a process out of crontab on a Linux/Unix

How to restart a process out of crontab on a Linux/Unix

last updated in Categories , , , , ,

 

I am a new Linux user and not familiar with crontab syntax. How do I use a cron job to restart server process if not running on a Linux or Unix-like system?

There are many ways to make sure that the essential server process such as HTTPD/Nginx/PHP-FPM/MySQL remains up and running all the time.
restarting a process out of crontab
This tutorial shows how to create and use a simple bash shell script to restart failed services using crontab.

 

 

 

Step 1 – Create a Bash Shell Script

Here is a simple shell script to check for httpd pid using the pgrep command. It will restart if httpd is not running on a CentOS/RHEL using the systemctl command. Create a file named /root/bin/restart-httpd
# vi /root/bin/restart-httpd
Append the following code:

#!/bin/bash
# Apache Process Monitor
# Restart Apache Web Server When It Goes Down
#  RHEL / CentOS 7.x httpd restart command
RESTART="/bin/systemctl restart httpd"
 
#Path to pgrep command
PGREP="/usr/bin/pgrep"
 
# Httpd daemon name: Under RHEL/CentOS/Fedora it is httpd
HTTPD="httpd"
 
# Find httpd pid
$PGREP ${HTTPD}
 
if [ $? -ne 0 ] # if apache not running 
then
 # restart apache
 $RESTART
fi

Save and close the file. Set permissions:
# chmod +x /root/bin/restart-httpd
# /root/bin/restart-httpd

Step 2 – Setup the cron job to restart process

Cron allows Linux and Unix users to run commands or scripts at a given date and time. You can schedule scripts to be executed periodically. Type the following command:
# crontab -e
Append the following code to restart httpd
## restart httpd if not running. check for httpd every 5 mins
*/5 * * * * /root/bin/restart-httpd >/dev/null 2>&1

Save and close the file.

A note about Linux and systemd based system

Systemd can handle keeping the service alive for you. You need to use the cp command:
# cp /lib/systemd/system/httpd.service /etc/systemd/system/httpd.service
Edit the file using vi command:
# vi /etc/systemd/system/httpd.service
Add Restart=always and RestartSec=5 in the [Service] section as follows:

[Unit]
Description=The Apache HTTP Server
After=network.target remote-fs.target nss-lookup.target
Documentation=man:httpd(8)
Documentation=man:apachectl(8)
 
[Service]
##############################################
## Make sure httpd always restart if failed ##
## Configures the time to sleep before      ##    
## restarting a service with 5 seconds too  ##
##############################################
Restart=always
RestartSec=5
##############################################
Type=notify
EnvironmentFile=/etc/sysconfig/httpd
ExecStart=/usr/sbin/httpd $OPTIONS -DFOREGROUND
ExecReload=/usr/sbin/httpd $OPTIONS -k graceful
ExecStop=/bin/kill -WINCH ${MAINPID}
# We want systemd to give httpd some time to finish gracefully, but still want
# it to kill httpd after TimeoutStopSec if something went wrong during the
# graceful stop. Normally, Systemd sends SIGTERM signal right after the
# ExecStop, which would kill httpd. We are sending useless SIGCONT here to give
# httpd time to finish.
KillSignal=SIGCONT
PrivateTmp=true
 
[Install]
WantedBy=multi-user.target

Reload configuration:
# systemctl daemon-reload
# systemctl restart httpd

Test it by killing httpd using the kill command:
# kill -9 $(pgrep httpd)
After 5 seconds httpd will restart again. Verify with the ps command:
# ps aux | grep httpd
Sample outputs:

root      8052  0.0  0.0 221960  7580 ?        Ss   13:46   0:00 /usr/sbin/httpd -DFOREGROUND
apache    8053  0.0  0.0 221960  6096 ?        S    13:46   0:00 /usr/sbin/httpd -DFOREGROUND
apache    8054  0.0  0.0 221960  6096 ?        S    13:46   0:00 /usr/sbin/httpd -DFOREGROUND
apache    8055  0.0  0.0 221960  6096 ?        S    13:46   0:00 /usr/sbin/httpd -DFOREGROUND
apache    8056  0.0  0.0 221960  6096 ?        S    13:46   0:00 /usr/sbin/httpd -DFOREGROUND
apache    8057  0.0  0.0 221960  6096 ?        S    13:46   0:00 /usr/sbin/httpd -DFOREGROUND
root      8061  0.0  0.0 112644  1720 ?        S+   13:46   0:00 grep --color=auto httpd

Conclusion

This is easy to setup and uses method to make sure an app/service remain online if killed due to some issues. A better and more reliable solution is monit monitoring software for restarting services such as mysql, apache and sendmail under a UNIX / Linux operating systems:

Monit is a free and open source software that acts as process supervision. It comes with the ability to restart services which have failed. You can use Systemd, daemontools or any other such tool for the same purpose.

0 (0)
Article Rating (No Votes)
Rate this article
Attachments
There are no attachments for this article.
Comments
There are no comments for this article. Be the first to post a comment.
Full Name
Email Address
Security Code Security Code
Related Articles RSS Feed
high swap space utilization in LINUX
Viewed 6435 times since Fri, Jul 13, 2018
RHEL: Change system’s hostname
Viewed 3325 times since Sun, May 27, 2018
Fałszujemy rozpoznania skanerów #2
Viewed 2850 times since Mon, May 21, 2018
RHCS6: Mirror/unmirror a GFS2 volume
Viewed 5093 times since Sun, Jun 3, 2018
A tcpdump Tutorial and Primer with Examples
Viewed 4932 times since Sun, Jun 17, 2018
Using IOzone for Linux disk performance analysis
Viewed 7503 times since Wed, Jul 25, 2018
Build a simple RPM that packages a single file
Viewed 8269 times since Sat, Jun 2, 2018
Tropienie pożeracza dysku
Viewed 2128 times since Thu, May 24, 2018
RHCS: Install a two-node basic cluster
Viewed 9862 times since Sun, Jun 3, 2018
HowTo: Retrieve Email from a POP3 Server using the Command Line
Viewed 10314 times since Mon, Feb 18, 2019