Enable rc.local

To enable /etc/rc.local file run on system startup on servers runing systemd, you can run systemctl enable rc-local Now you need to create file /etc/rc.local with 755 permission. touch /etc/rc.local chmod 755 /etc/rc.local See Autostart

Autostart

Enable rc.local Start a program after reboot using cronjob Auto Start Nginx on Windows VMware ESXi set Virtual Machine to start on Boot Start meguca on boot Autostart icecast using systemd Auto restart lighttpd on crash Supervisord On Linux, auto start configurations are stored in ~/.config/autostart/

Auto Start Nginx on Windows

To auto start Nginx on Windows, download http://nssm.cc/download Extract the file, you will find “nssm.exe” file for 32 and 64 bit windows. Copy the file for your Windows version to a folder like C:\utils\nssm.exe Start a command promt as user Administrator, then to go the folder where nssm.exe is, then run .\nssm.exe install “Nginx”” In … Read more