Linux 下 apache啟動 停止 重啟命令

2021-07-28 22:56:09 字數 1110 閱讀 4454

基本的操作方法:

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

問題:

用記事本開啟 conf/httpd.conf

將裡面的 #servername 

localhost:80 注釋去掉即可。

再執行 httpd

然後可以通過瀏覽器訪問 http://localhost:80 ,如果頁面顯示 「it works!」 ,即表示apache已安裝並啟動成功。

Linux下apache自動啟動設定

在linux系統中一般採用編譯原始碼的方式來安裝apache,有兩種方法可以讓apache在系統啟動時自動啟動。b 方法一 修改配置檔案 b 配置檔案路徑 b color blue vi etc rc.d rc.local color b 在 ect rc.d rc.local 檔案中增加啟動apa...

Linux下apache自動啟動設定

在linux系統中一般採用編譯原始碼的方式來安裝apache,有兩種方法可以讓apache在系統啟動時自動啟動。方法一 修改配置檔案 配置檔案路徑 vi etc rc.d rc.local 在 ect rc.d rc.local 檔案中增加啟動apache的命令,如下 usr local webse...

linux 下 apache啟動 停止 重啟命令

基本的操作方法 本文假設你的apahce安裝目錄為 usr local apache2,這些方法適合任何情況 apahce啟動命令 推薦 usr local apache2 bin apachectl start apaceh啟動 apache停止命令 usr local apache2 bin a...