[Apache] apache常用指令

  1. 測試設定檔文法是否正確
    apachectl configtest
     
  2. 套用新設定檔,但不重啟apache,在ubuntu可以用第二個
    service apache2 graceful
    service apache2 reload
     
  3. 啟動apache
    service apache2 start
     
  4. 重啟apache
    service apache2 restart
     
  5. 停止apache
    service apache2 stop