apache 基本操作

2021-07-11 03:09:21 字數 868 閱讀 1891

基本的操作方法:

本文假設你的apahce安裝目錄為/usr/local/apache2,這些方法適合任何情況

apahce啟動命令:

推薦/usr/local/apache2/bin/apachectlstart apaceh啟動

apache停止命令

/usr/local/apache2/bin/apachectlstop停止

apache重新啟動命令:

/usr/local/apache2/bin/apachectlrestart 重啟

要在重啟 apache伺服器時不中斷當前的連線,則應執行:

/usr/local/sbin/apachectlgraceful

如果apache安裝成為linux的服務的話,可以用以下命令操作:

service httpd start啟動

service httpd restart重新啟動

service httpd stop停止服務

linux系統為ubuntu

一、startapache 2 server /啟動apache服務

# /etc/init.d/apache2start

or$ sudo/etc/init.d/apache2 start

二、restart apache 2 server /重啟apache服務

# /etc/init.d/apache2restart

or$ sudo/etc/init.d/apache2 restart

三、stopapache 2 server /停止apache服務

# /etc/init.d/apache2stop

or$ sudo/etc/init.d/apache2 stop

Apache基本操作命令

apache的基本操作命令都在apachectl指令碼中,主要是用於控制apache啟動,關閉等 1.查詢httpd程序 admin 16080 0.0 0.1 1207172 3028 sl sep12 0 00 opt taobao install httpd bin httpd f home ...

Apache 基本配置

apache 配置詳解 配置檔案 httpd.conf 1.基本配置 serverroot d apache apache的安裝目錄 listen 80 伺服器監聽的埠號 servername www.com 80 主站點名稱 的主機名 serveradmin qq.com 管理員的郵件位址 doc...

Apache 基本配置

相關模組 相關指令 apache 配置檔案是包含若干指令的純文字檔案,主配置檔案通常為 httpd.conf。檔案位置編譯時確定,但仍然可以通過命令列引數 f 來修改。還可以用include 來附加其他配置檔案。只有在啟動或重啟時,主配置檔案才會生效。伺服器會讀取包含mime檔案型別的檔案,其檔名由...