Windows XP Windows 7 Windows 2003 Windows Vista Windows教程綜合 Linux 系統教程
Windows 10 Windows 8 Windows 2008 Windows NT Windows Server 電腦軟件教程
 Windows教程網 >> Linux系統教程 >> Linux教程 >> Linux下重啟Apache的命令

Linux下重啟Apache的命令

日期:2017/2/7 14:28:52      編輯:Linux教程
 

基本的操作方法:
本文假設你的apahce安裝目錄為/wp-content/local/apache2,這些方法適合任何情況

apahce啟動命令:
推薦/wp-content/local/apache2/bin/apachectl start apaceh啟動

apache停止命令
/wp-content/local/apache2/bin/apachectl stop 停止

apache重新啟動命令:
/wp-content/local/apache2/bin/apachectl restart 重啟

要在重啟 Apache 服務器時不中斷當前的連接,則應運行:

/wp-content/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

Copyright © Windows教程網 All Rights Reserved