Apache
測試設定檔
apachectl configtest
啟動關閉 Apache 服務
sudo service apache2 stop
sudo service apache2 start
sudo service apache2 restart
關閉 Apache 避免開機執行 Apache
# 關閉
sudo update-rc.d -f apache2 remove
# 恢復自動啟動
sudo update-rc.d apache2 defaults
sudo update-rc.d apache2 disable
sudo update-rc.d apache2 enable
移除 Apache
sudo apt-get purge -y apache2*