IT/Software/System Config/cron: Difference between revisions
Walttheboss (talk | contribs) |
(Add mail information) |
||
Line 52: | Line 52: | ||
<code>0 18 * * * systemctl poweroff</code> | <code>0 18 * * * systemctl poweroff</code> | ||
<br /> | <br /> | ||
=== Email notifications === | |||
To receive emails from cronjobs, first install a sendmail client. [[It/Software/System Config/SSMTP|SSMTP]] recommended. (sudo apt install ssmtp) | |||
Use "MAILTO" inside any cron file to declare the address to send output to. If no MAILTO is defined, cron will by default send all output to "username@hostname" on the sendmail configuration. If sendmail is configured to use the msgeducation mailserver, all emails will be redirected to admin@msgeducation.com with the To address as the username. To choose an address to send output to systemwide, put the following in /etc/crontab: | |||
MAILTO=it@msgeducation.com | |||
==External Tools== | ==External Tools== |
Revision as of 14:16, 3 May 2024
About
Cron is a "daemon to execute scheduled commands"[1]
Usage
To edit your crontab you can run
crontab -e
The first time you will need to select an editor. We normally use Nano the first choice.
If you make a mistake you can run the select-editor
(or sudo select-editor
) command to change it.
To edit root privilege crontabs you need.
sudo crontab -e
Formatting
Cron jobs are in typically in the following format
* * * * * /path/to/script.sh
The time is in the format of
Minute, Hour, Day of the month, Month, Day of the week.
The following line would execute script.sh at minute 0 of the 8th hour, every day, every month and every day of the week.
Or in simpler terms, it runs every day at 8:00 AM.
0 8 * * * /path/to/script.sh
Now let's say we want to run our script every 5 minutes.
We could try doing the following but that would only run the script 5 minutes after every hour.
5 * * * * /path/to/script.sh
In cron we can use the "/" character to indicate step values so to run every 5 minutes we can do the following.
*/5 * * * * /path/to/script.sh
Special Times
Cron also has several special times that can be used in place of the regular time format.
For the following, the script will be run on the first minute of the selected time frame.
- @yearly
- @monthly
- @weekly
- @daily
- @hourly
So, for example, to run at minute 0 of every hour we can do the following.
@hourly /path/to/script.sh
We also have one more special time to run scripts at reboot.
- @reboot
Examples:
We set computers to power off at 6 PM with this tab
0 18 * * * systemctl poweroff
Email notifications
To receive emails from cronjobs, first install a sendmail client. SSMTP recommended. (sudo apt install ssmtp)
Use "MAILTO" inside any cron file to declare the address to send output to. If no MAILTO is defined, cron will by default send all output to "username@hostname" on the sendmail configuration. If sendmail is configured to use the msgeducation mailserver, all emails will be redirected to admin@msgeducation.com with the To address as the username. To choose an address to send output to systemwide, put the following in /etc/crontab:
MAILTO=it@msgeducation.com
External Tools
crontab guru is a helpful tool for confirming your cron formatting is correct.