• Inviting everyone who uses WordPress management tools in Plesk
    The Plesk team is conducting a 60-minute research session that includes an interview and a moderated usability test.
    To participate, please use this link .
    Your experience will help shape product decisions and ensure the tools better support real-world use cases.

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