CentOS下Apache預設安裝路徑

2021-08-20 10:33:21 字數 798 閱讀 1949

apache:

如果採用rpm包安裝,安裝路徑應在 /etc/httpd目錄下

apache配置檔案:/etc/httpd/conf/httpd.conf

apache模組路徑:/usr/sbin/apachectl

web目錄:/var/www/html

如果採用源**安裝,一般預設安裝在/usr/local/apache2目錄下

systemctl start firewalld.service#啟動firewall

systemctl stop firewalld.service#停止firewall

systemctl disable firewalld.service#禁止firewall開機啟動

systemctl start iptables.service#啟動

systemctl stop iptables.service#停止iptables

systemctl disable iptables.service#禁止iptables開機啟動

安裝命令:yum -yinstall httpd

配置檔案預設路徑:/etc/httpd/conf/httpd.conf 

啟動服務命令:systemctl start httpd.service

開機自動啟動:systemctl enable httpd.service

檢視狀態:systemctl status httpd.service

檢視程序是不是存在:ps -ef | grep httpd

檢視埠是不是正在監聽:netstat -lntp

centos下如何解除安裝apache

在linux上刪除已經安裝的軟體或者服務,比如centos上解除安裝apache要如何操作呢?下面來一起看看。02.接著開始使用centos下的解除安裝命令,rpm e 軟體或服務名 我們執行 如果出現類似 httpd 2.2.0 is needed by installed gnome user ...

CentOS下Apache安裝總結

作業系統 centos 6.8 伺服器 apache 2.4.29 其他關鍵依賴庫 apr 1.6.3 apr util 1.6.1 pcre 8.41 命令格式 命令說明 命令引數解釋 tar zxvf dir1 c dir2 將dir1下的檔案解壓到dir2指定的目錄下 無rpm qa soft...

CentOS 下編譯安裝Apache

centos 下編譯安裝apache 解除安裝原有的apache 安裝apr tar zvxf apr 1.4.6.tar.gz cd apr 1.4.6 configure prefix usr local apr make make install 安裝apr util tar zvxf apr...