crontab is the program used to install, deinstall, or list the tables used to drive the cron daemon in Vixie Cron. Each user can have their crontab. You or user can use the crontab command to edit cron jobs. This page shows how to run cron job after Linux system reboot.
Linux execute cron job after system reboot
The crontab command maintains crontab files for individual users. One can install or remove cron jobs as per needs.

Running job at startup (boot time)
You need to use special string called @reboot. It will run once, at startup after Linux reboot command. The syntax is as follows:
@reboot /path/to/job @reboot /path/to/shell.script @reboot /path/to/command arg1 arg2
This is an easy way to give your users the ability to run a shell script or command at boot time without root access. First, run crontab command:
$ crontab -e
OR
# crontab -e -u UserName
# crontab -e -u vivek
Run a script called /home/vivek/bin/installnetkit.sh
@reboot /home/vivek/bin/installnetkit.sh
It i a super-simple way to run scripts on boot using cron jobs.
How to run a cron job automatically after server reboot
Say your script needs to be run only after 5 minutes. For example: reboot + 5mintues. The syntax is as follows:
@reboot sleep 300 && /home/wwwjobs/clean-static-cache.sh
The sleep command to add delay for a specified amount of time. In this example, 600 seconds and after that time clean-static-cache.sh gets executed at boot time.
Start crond automatically at boot time
You also need to enable crond service via sys v / BSD init style system. Under RHEL / CentOS / Fedora, you need to use chkconfig (ntsysv) command to enable crond on boot:
# chkconfig crond on
## Commands to start/stop/restart crond for Linux Execute Cron Job ###
# service crond restart
# service crond start
# service crond stop
Under Debian / Ubuntu Linux use update-rc.d as follows to turn on service on boot:
# update-rc.d cron defaults
If you are using modern distro with systemd, try the following systemctl command
# systemctl enable crond.service
### this to start/stop/restart crond on systemd enabled distro such centos 7.x/debian/ubutnu/arch ###
# systemctl start crond.service
# systemctl stop crond.service
# systemctl restart crond.service
# systemctl status crond.service
For Debian/Ubuntu Linux with systemd, try:
$ sudo systemctl enable cron.service
$ sudo systemctl start cron.service
$ sudo systemctl stop cron.service
$ sudo systemctl restart cron.service
$ sudo systemctl status cron.service
Save and close the file. For further information read out tutorial on cron jobs.
Conclusion
This page showed how to run and execute cron job after system rebooted. For more info see this page here.
- What is cron on a Linux or Unix-like systems?
- How To Add Jobs To cron Under Linux or UNIX?
- Verify crond Daemon And Cronjobs Are Running
- Start Restart and Stop The Cron or Crond Service
- List / Display All Cron Jobs
- Linux / UNIX Crontab File Location
- Change Crontab Email Settings ( MAILTO )
- Disable The Mail Alert By Crontab Command On a Linux or Unix-like Systems
- At What Time Cron Entries In cron.daily, cron.weekly, cron.monthly Run?
- Execute Cron Job After System Reboot
- Setup and Run PHP Script As A Cron Job
- Run crontab job every minute on a Linux or Unix-like system
- Running crontab (cron jobs) Every 10 Minutes
- Cron Job Script Execution on the Last Day of a Month
- Execute / Run crontab (cron jobs) every 1 minute
- Ubuntu create cron.log file
🐧 14 comments so far... add one ↓
| Category | List of Unix and Linux commands |
|---|---|
| Documentation | help • mandb • man • pinfo |
| Disk space analyzers | df • duf • ncdu • pydf |
| File Management | cat • cp • less • mkdir • more • tree |
| Firewall | Alpine Awall • CentOS 8 • OpenSUSE • RHEL 8 • Ubuntu 16.04 • Ubuntu 18.04 • Ubuntu 20.04 |
| Modern utilities | bat • exa |
| Network Utilities | NetHogs • dig • host • ip • nmap |
| OpenVPN | CentOS 7 • CentOS 8 • Debian 10 • Debian 8/9 • Ubuntu 18.04 • Ubuntu 20.04 |
| Package Manager | apk • apt |
| Processes Management | bg • chroot • cron • disown • fg • glances • gtop • jobs • killall • kill • pidof • pstree • pwdx • time • vtop |
| Searching | ag • grep • whereis • which |
| Shell builtins | compgen • echo • printf |
| User Information | groups • id • lastcomm • last • lid/libuser-lid • logname • members • users • whoami • who • w |
| WireGuard VPN | Alpine • CentOS 8 • Debian 10 • Firewall • Ubuntu 20.04 |
Comments on this entry are closed.
OK, But some caveats here.
1. Only works after a reboot. If you do a shutdown, or if the box crashes (as in plug vs vacuum) …. and then start, it doesn’t get run.
2. The @reboot command is not universal, especially missing on systems running micro or embedded Linux.
3. There is an alternate. the file /etc/rc.local is a place were you can place a command string to be run on boot, regardless of the means by which the system went down. Yes I know many Linux purists in favor of SysV style init scripts. However for a quick on liner it’s perfect. Here also gets run if you do a warm restart (as in go to init level 1 and then back to 3 or 5). Best this works across a very wide if not all spectrum of Linux systems. Anything in this file is always the last thing to run prior to login prompt appearing.
4. Write an init script, and put it in /etc/init.d with the appropriate run levels and timing. Harder to do and get right, somewhat, but it is the correct way to create an init entry. It also would allow for you to fine tune the timing. (need to run this job before something else gets started? Use this method)
Nice..
linuxrebel is just looks ..right…but will an normal .sh script run on boot up if we put it in specified run level script like rc3.d ?…or what we need to do to follow what Linuxrebel said above??
Thanks Vk & Lr
The @reboot command not working. Finally got this and using for my Wordpress Site,
# touch /etc/init.d/memcached
# echo ‘#!/bin/sh -e’ >> /etc/init.d/memcached
# echo ‘/usr/local/bin/memcached -d -m 128 -p 11211 -u nobody -l localhost’ >> /etc/init.d/memcached
# chmod u+x /etc/init.d/memcached
# echo ‘/etc/init.d/memcached’ >> /etc/rc.local
On CentOS 5.6, an /etc/cron.d/rebootlog crontab containing
@reboot root date >> /var/tmp/reboot.log
Is run when the system restarts after the commands “reboot”, “shutdown -r”, “shutdown -h”, “halt” and after a power failure. I did not find a shutdown method where the job was not run when the system restarted.
how i check whether the cron job is running or not?
If Cron is running a custom script then in your script you can write to a log file. Something like echo “Starting cronjob + timestamp” and echo “Successfully finished cron job + timestamp”
With grep, it’s a little bit different. For example, to move every files including a given type of datas:
grep ‘<div id=' ./* | cut -f 1 -d":"|xargs -I {} mv {} ../YOUREP/{}
great tip, tnx! Made my day & solved a problem I had.. :)
Btw, I’ve just noticed a typo: command on redhat is “chkconfig” instead of “chekconfg”.
May want to fix the spelling on – chkconfig
I used “chkconfig crond on”
Its working fine, thanks…
Just an FYI…there’s a typo in the header of the word “startup”: “Running job at statup (sp.) (boot)”.
Thanks for the heads up.
how to run certain script after 5mins of reboot
@reboot sleep 300; myscript.sh