航行日志

控制开机启动apache2的命令

只是移除开机启动,而不是要删除apache2可以使用:

先停用apache2

[shell]sudo /etc/init.d/apache2 restart[/shell]

然后:

[shell]sudo update-rc.d -f apache2 remove[/shell]

如果需要恢复:

[shell]sudo update-rc.d apache2 defaults[/shell]

主要用于从apache2切换到nginx.