天天看點

linux 下 apache啟動、停止、重新開機指令

基本的操作方法:

本文假設你的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

$ sudo /etc/init.d/apache2 restart

三、Stop Apache 2 Server

/停止apache服務

# /etc/init.d/apache2 stop

$ sudo /etc/init.d/apache2 stop

繼續閱讀