查看apache2的命令 httpd -V
其中HTTPD_ROOT和SERVER_CONFIG_FILE
就可以確定httpd.conf的路徑了
假設(shè)當(dāng)前Linux用戶的apahce安裝目錄為/usr/local/apache2,那么在命令行終端中使用以下命令啟動(dòng),停止和重啟apache。
1、啟動(dòng)apahce的命令:
/usr/local/apache2/bin/apachectl start apache
2、 停止apache的命令:
/usr/local/apache2/bin/apachectl stop
3、 重啟apache的命令:
/usr/local/apache2/bin/apachectl restart
要在重啟 Apache 服務(wù)器時(shí)不中斷當(dāng)前的連接,則應(yīng)運(yùn)行:
/usr/local/sbin/apachectl graceful
如果當(dāng)前用戶的apache已經(jīng)安裝為linux的服務(wù)的話,可以使用以下命令進(jìn)行以上操作。
1、啟動(dòng)apache service httpd start
2、停止服務(wù)apache service httpd stop
3、 重新啟動(dòng)apache service httpd restart
Linux系統(tǒng)為Ubuntu
一、Start Apache 2 Server /啟動(dòng)apache服務(wù)
# /etc/init.d/apache2 start
or
$ sudo /etc/init.d/apache2 start
二、 Restart Apache 2 Server /重啟apache服務(wù)
# /etc/init.d/apache2 restart
or
$ sudo /etc/init.d/apache2 restart
三、Stop Apache 2 Server /停止apache服務(wù)
# /etc/init.d/apache2 stop
or
$ sudo /etc/init.d/apache2 stop
上一個(gè)教程:Linux系統(tǒng)下,怎么重啟Tomcat使用命令?
下一個(gè)教程:Linux操作系統(tǒng)中,怎么重啟MySQL?