1、查看系統(tǒng)是否安裝Apache:
創(chuàng)新互聯(lián)公司專注于衡水網站建設服務及定制,我們擁有豐富的企業(yè)做網站經驗。 熱誠為您提供衡水營銷型網站建設,衡水網站制作、衡水網頁設計、衡水網站官網定制、成都微信小程序服務,打造衡水網絡公司原創(chuàng)品牌,更為您提供衡水網站排名全網營銷落地服務。rpm -qa|grep httpd
有則卸載
yum remove httpd* -y
或
rpm -e --allmatches --nodeps httpd-2.2.3-83.el5.centos
2、源碼安裝apache
安裝apr
tar zxvf apr-1.5.0.tar.gz
cd apr-1.5.0
mkdir -p /usr/local/apr
./configure --prefix=/usr/local/apr
make
make install
安裝apr-util
tar zxvf apr-util-1.5.3.tar.gz
cd apr-util-1.5.3
mkdir -p /usr/local/apr-util-1.5.3
./configure --prefix=/usr/local/apr-util --with-apr=/usr/local/apr/bin/apr-1-config
make
make install
安裝pcre
unzip -o pcre-8.34.zip
cd pcre-8.34
mkdir -p /usr/local/pcre
./configure --prefix=/usr/local/pcre
make
make install
安裝openssl
tar zxvf openssl-1.0.1.tar.gz
cd openssl-1.0.1
mkdir -p /usr/local/openssl-1.0.1
./configure --prefix=/usr/local/openssl-1.0.1
make
make install
安裝apache
tar zxvf httpd-2.4.7.tar.gz
cd httpd-2.4.7
mkdir -p /usr/local/apache
./configure --prefix=/usr/local/apache --enable-modules=all --enable-mods-shared=all --enable-dav --enable-dav-fs --enable-so --with-mpm=prefork --with-ssl=/usr/local/openssl --with-apxs=/usr/local/apache/bin/apxs
--with-apr=/usr/local/apr --with-apr-util=/usr/local/apr-util --with-pcre=/usr/local/pcre
make
make install
配置http服務器
首先測試一下服務器是否可以正常訪問,命令如下:
cd /usr/local/apache/bin
./apachectl start
然后在瀏覽器里輸入http://運行apache的ip地址
出現(xiàn)It Works,表示成功。
==============================apache的vhost配置=====================================
一、修改http.conf,使用httpd-vhosts.conf
# Virtual hosts
Include conf/extra/httpd-vhosts.conf
二、在httpd-vhosts.conf中配置站點
apache-2.2.x配置虛擬機的內容:
NameVirtualHost 192.168.10.81:80
ServerAdmin rocdk890@gmail.com
directoryIndex index.html index.php index.htm index.shtml login.php
ServerName 192.168.10.81
DocumentRoot /var/www/vhosts/wwwroot
Options -Indexes
AllowOverride All
Order allow,deny
Allow from all
==================================
apache-2.4.x配置虛擬機的內容:
ServerAdmin rocdk890@gmail.com
directoryIndex index.html index.php index.htm index.shtml login.php
ServerName 192.168.10.81
DocumentRoot /var/www/vhosts/wwwroot
Options -Indexes
AllowOverride All
Require all granted
可以看到apache-2.4.x把NameVirtualHost給取消,現(xiàn)在配置虛擬主機不需要再配置NameVirtualHost了.
刪除了 Order deny,allow 和 Order allow,deny
把 Deny from all 替換成了 Require all denied
把Allow from all 替換成了 Require all granted
然后還把 Allow from 192.168.10.21 這樣的語句給替換成了 Require host 192.168.10.21
三、瀏覽器綁定host即可
本文題目:centos5.5下源碼安裝apache
分享路徑:http://m.rwnh.cn/article32/cpohsc.html
成都網站建設公司_創(chuàng)新互聯(lián),為您提供標簽優(yōu)化、網站設計、網站設計公司、手機網站建設、企業(yè)建站、小程序開發(fā)
聲明:本網站發(fā)布的內容(圖片、視頻和文字)以用戶投稿、用戶轉載內容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內容未經允許不得轉載,或轉載時需注明來源: 創(chuàng)新互聯(lián)