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 startpuoi abilitare l'avvio automatico del Web Server Apache scrivendo:
#sudo update-rc.d apache2 disable 5 4 3 2quando vuoi fermarlo potrai usare:
#sudo service apache2 stop
Commenti