I have a mail server in my environment and I never touched it (someone configured it for me at first) since a few days ago when everything stopped working and I was unable to receive any emails. The error was "Kernel Panic" and I had to reboot the server. Someone looked at it and decided that the high uptime caused this. I want to implement a scheduled task to restart the server every 6 months on a Saturday at midnight. Is this possible? Thanks
Asked
Active
Viewed 2,298 times
1 Answers
0
You can configure a cron job for this task.
00 12 01 */6 * bash -c "reboot"
Will reboot the computer every 6 months at 12:00
ap0
- 116