0

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

Dominique
  • 103

1 Answers1

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