Linux Ubuntu: start e stop di un servizio all'avvio

puoi disabilitare l'avvio automatico del Web Server Apache scrivendo:
#sudo update-rc.d apache2 disable 5 4 3 2
quando vuoi avviarlo potrai usare:
#sudo service apache2 start
 puoi abilitare l'avvio automatico del Web Server Apache scrivendo:
#sudo update-rc.d apache2 disable 5 4 3 2
quando vuoi fermarlo potrai usare:
#sudo service apache2 stop

Commenti

Post popolari in questo blog

Solaris 10: How to restart network service without reboot

How to send e-mail using PHP and mail() with Linux Debian