Scale up as you grow — whether you're running one virtual machine or ten thousand.

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.

This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
You can use crontab for that. Log in as root and run crontab -e. Once inside the editor, add the following line:
0 0 * * * reboot
This will reboot the server every day at midnight.
In order to then run a command after reboot, you can add another line to crontab like this:
@reboot screen ./TS3MusicBot_runscript.sh -parameters -parameters -parameters
In order for this to work under Debian/Ubuntu, you may have to run this command as root:
update-rc.d cron defaults
Another approach is to create a startup script in /etc/init.d (Debian/Ubuntu) with the following content:
#!/bin/sh
case "$1" in
start)
screen ./TS3MusicBot_runscript.sh -parameters -parameters -parameters
exit 0
;;
stop)
exit 0
;;
reload|restart|force-reload)
exit 0
;;
**)
echo "Usage: $0 {start|stop|reload}" 1>&2
exit 1
;;
esac
In case you choose this approach, then remember to do the following:
chmod +x /etc/init.d/musicbot
update-rc.d musicbot defaults
Hi,
thank you for that post, I tried the first method, which is :
crontab -e
Then put0 0 * * * rebootat the end
and then
@reboot screen ./TS3MusicBot_runscript.sh -parameters -parameters -parameters
And lastly
update-rc.d cron defaults
For some reason my system does not reboot at midnight. It also doesn’t runt he command when I reboot it myself.
I use the command sudo reboot now but my system doesn’t actually turn off.