基本的操作方法:
本文假設你的apahce安裝目錄為/usr/local/apache2,這些方法適合任何情況
apahce啟動命令:
推薦/usr/local/apache2/bin/apachectl start apaceh啟動
apache停止命令
/usr/local/apache2/bin/apachectl stop
停止 apache重新啟動命令:
/usr/local/apache2/bin/apachectl restart 重啟
要在重啟 apache 伺服器時不中斷當前的連線,則應執行:
/usr/local/sbin/apachectl graceful
如果apache安裝成為linux的服務的話,可以用以下命令操作:
service httpd start 啟動
service httpd restart 重新啟動
service httpd stop 停止服務
linux系統為ubuntu
一、start apache 2 server /啟動apache服務
# /etc/init.d/apache2 start
or$ sudo /etc/init.d/apache2 start
二、 restart apache 2 server /重啟apache服務
# /etc/init.d/apache2 restart
or$ sudo /etc/init.d/apache2 restart
三、stop apache 2 server /停止apache服務
# /etc/init.d/apache2 stop
or$ sudo /etc/init.d/apache2 stop
killall -9 httpd 可以一次關掉所有httpd埠
檢視apache是否已經啟動
apache 開啟/重啟/關閉 服務
ubuntu linux下重啟apache命令
linux系統下重啟apache命令 首先要知道的是重啟apache命令需要root許可權,若不是root使用者需要在命令前新增sudo命令臨時轉換為超級使用者root 1.啟動apache服務 start etc init.d apache2 start root使用者 sudo etc init...
linux 下 apache啟動 停止 重啟命令
基本的操作方法 本文假設你的apahce安裝目錄為 usr local apache2,這些方法適合任何情況 apahce啟動命令 推薦 usr local apache2 bin apachectl start apaceh啟動 apache停止命令 usr local apache2 bin a...
Linux下apache(優雅)停止 重啟方式
立即停止 訊號 term apachectl k stop 傳送term或stop訊號到父程序可以使它立刻殺死所有子程序。這將花費一些時間來殺死所有子程序。然後父程序自己也退出。所有進行中的請求將被強行中止,而且不再接受其它請求。優雅重啟 訊號 usr1 apachectl k graceful 立...