• If you are still using CentOS 7.9, it's time to convert to Alma 8 with the free centos2alma tool by Plesk or Plesk Migrator. Please let us know your experiences or concerns in this thread:
    CentOS2Alma discussion

How to reboot with crontab ?

C

callawey

Guest
i wish to reboot my server every morning at 6:30 am but it is not worked.


i edit as so;

Minute * : 30
Hour * : 6
Day of the Month * : *
Month * :
Day of the Week * : *
Command * : reboot

is it not right ? or how can i do it ?
 
I never used the plesk plugin. I can tell you how it works thru ssh.

Logon to the server thru ssh.
Make yourself root and type: crontab -e
Add the line down here...

30 6 * * * reboot

Thats it!

ps... why do you wanna restart the server every morning?
 
Maybe cron doesnt except reboot, try "/sbin/init 6" instead
 
Back
Top