在CentOS7下安裝APACHE2.4.6
阿新 • • 發佈:2019-02-16
安裝步驟如下: 首先檢查系統是否安裝有APACHE、APR、APR-UTIL以及GCC #rpm -qa|grep http #rpm -qa|grep apr #rpm -qa|grep gcc 然後掛載光碟映象: #mount /dev/cdrom /mnt 依次安裝APR、APR-UTIL、GCC、HTTPD #rpm -ivh gcc-4.8.5-11.el7.x86_64.rpm #rpm -ivh apr-1.4.8-3.el7.x86_64.rpm #rpm -ivh apr-util-1.5.2-6.el7.x86_64.rpm #rpm -ivh httpd-2.4.6-45.el7.centos.x86_64.rpm 安裝完成啟動APACHE #systemctl start httpd 檢視埠是否啟動 # netstat -tnul |grep ":80" 設定APACHE服務開機啟動 #systemctl enable httpd 設定WWW目錄為APACHE屬主跟屬組 #chown apache:apache /var/www 檢查防火牆設定 #firewall-cmd --list-ports 新增80埠並永久開放 #firewall-cmd --permanent --zone=public --add-port=80/tcp #firewall-cmd --reload 設定APACHE配置檔案 #vi /etc/httpd/conf/httpd.conf 將Require all denied全部改為Require all granted 在瀏覽器中訪問http://localhost