Linux Start Restart and Stop The Cron or Crond Service
See all GNU/Linux related FAQHow do I start, restart and stop the cron service under a Linux / BSD / UNIX-like operating systems using command prompt?
The Cron (crond) daemon or service is use to execute scheduled commands or scripts. cron wakes up every minute, examining all stored crontabs, checking each command to see if it should be run in the current minute.
Linux Start Restart and Stop The Cron or Crond Service
Tutorial details
Difficulty level Easy
Root privileges Yes
Requirements Linux
Est. reading time 2 mintues
ADVERTISEMENT
Commands for RHEL/Fedora/CentOS/Scientific/Rocky/Alma Linux user
If you are using Redhat (RHEL)/Fedora/CentOS/Rocky/Alma Linux use the following commands.
Task: Start cron service
To start the cron service, use:
/etc/init.d/crond start
OR RHEL/CentOS 5.x/6.x user:
service crond start
OR RHEL/Centos Linux 7.x user:
systemctl start crond.service
Task: Stop cron service
To stop the cron service, use:
/etc/init.d/crond stop
OR RHEL/CentOS 5.x/6.x user:
service crond stop
OR RHEL/Centos Linux 7.x user:
systemctl stop crond.service
Task: Restart cron service
To restart the cron service, use:
/etc/init.d/crond restart
OR RHEL/CentOS 5.x/6.x user:
service crond restart
OR RHEL/Centos Linux 7.x user:
systemctl restart crond.service
Commands for Ubuntu/Mint/Debian based Linux distro
If you are using Debian or Ubuntu or Mint Linux the following commands.
Task: Debian Start cron service
To start the cron service, use:
/etc/init.d/cron start
OR
sudo /etc/init.d/cron start
OR
sudo service cron start
Task: Debian Stop cron service
To stop the cron service, use:
/etc/init.d/cron stop
OR
$ sudo /etc/init.d/cron stop
OR
$ sudo service cron stop
Task: Debian Restart cron service
To restart the cron service, use:
/etc/init.d/cron restart
OR
$ sudo /etc/init.d/cron restart
OR
$ sudo service cron restart
Patreon supporters only guides 🤓
No ads and tracking
In-depth guides for developers and sysadmins at Opensourceflare✨
Join my Patreon to support independent content creators and start reading latest guides:
How to set up Redis sentinel cluster on Ubuntu or Debian Linux
How To Set Up SSH Keys With YubiKey as two-factor authentication (U2F/FIDO2)
How to set up Mariadb Galera cluster on Ubuntu or Debian Linux
A podman tutorial for beginners – part I (run Linux containers without Docker and in daemonless mode)
How to protect Linux against rogue USB devices using USBGuard
If your domain is not sending email, set these DNS settings to avoid spoofing and phishing
Join Patreon ➔
Task : Start the cron service at boot time
It is recommended that you start the service at boot time so that job can run w/o problems.
If you are using Redhat (RHEL)/Fedora Core/Cent OS Linux use the following commands to ensure that the service remains enabled after a reboot:
chkconfig crond on
Redhat (RHEL) Linux8.0:
systemctl enable crond.service
You can use a text based GUI tool called ntsysv to enable crond service:
ntsysv
If you are using Debian or Ubuntu Linux use the following commands to ensure that the service remains enabled after a reboot:
rcconf
OR
$ sudo rcconf
You can use command line tool update-rc.d:
update-rc.d cron defaults
OR
$ sudo update-rc.d cron defaults
A note about Apline Linux user
Use anyone of the following command on Alpine Linux to restart crond service:
/etc/init.d/crond restart
## OR ##
service crond restart
转载于:https://www.cyberciti.biz/faq/howto-linux-unix-start-restart-cron/