• Debian 11 has reached its end-of-life (vendor EOL date - August 31, 2026). Plesk Obsidian 18.0.81 is the last release to support it.
    If you are running Plesk Obsidian on Debian 11, we recommend you upgrade those servers to Debian 12 using our dist-upgrade tool.
  • We plan to deprecate and remove the support for XML RPC protocol versions earlier than 1.6.9.1 in Plesk Obsidian 18.0.82. We strongly recommend that you update all existing integrations using earlier versions of the XML RPC protocol to comply with the version 1.6.9.1 specification.

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