平臺:VMware上虛擬的centos4.7php
宿主機:windowshtml
安裝Apache前準備:web
一、檢查該環境中是否已經存在httpd服務的配置文件,默認存儲路徑:/etc/httpd/httpd.conf(這是centos預裝的Apache的一個ent版本,通常咱們安裝源代碼版的Apache)。若是已經存在/etc/httpd/httpd.conf,請先卸載或者關閉centos系統自帶的web服務,執行命令:chkconfig httpd off,再或者把centos自帶的httpd服務的80端口改成其餘端口,只要不與咱們安裝的Apache服務的端口衝突就能夠啦。apache
中止並卸載Linux系統自帶的httpd服務:windows
一、service httpd stopcentos
二、ps -ef | grep httpd網站
三、kill -9 pid號(逐個刪除)spa
四、rpm -qa |grep httpd.net
五、rpm -e httpd軟件包rest
[root@localhost bin]# find / -name httpd.conf [root@localhost bin]#
二、下載Apache安裝包(httpd-2.4.3.tar.gz或httpd-2.2.23.tar.gz),下載地址:http://httpd.apache.org/
在安裝Apache時,我分別針對不一樣版本進行了安裝,在編譯時是不一樣的,configure後跟的參數不一樣。
httpd-2.2.23版本編譯命令:
./configure --prefix=/usr/local/apache2 (安裝目錄參數後面能夠不加任何參數,直接安裝便可) make make install
httpd-2.4.3版本編譯命令:
./configure --prefix=/usr/local/apache2 --with-apr=/usr/local/apr --with-apr-util=/usr/local/apr-util/ --with-pcre=/usr/local/pcre (除了指定Apache的安裝目錄外,還要安裝apr、apr-util、pcre,並指定參數) make make install
在編譯Apache(在安裝httpd-2.4.3時遇到的問題)時分別出現了apr not found、APR-util not found、pcre-config for libpcre not found的問題,下面就httpd-2.4.3的這些問題解決來實際操做一把。
http://apr.apache.org/download.cgi 下載apr-1.4.5.tar.gz、apr-util-1.3.12.tar.gz
http://sourceforge.net/projects/pcre/files/latest/download 下載pcre-8.31.zip
1.解決apr not found問題
[root@localhost bin]# tar -zxf apr-1.4.5.tar.gz [root@localhost apr-1.4.5]# ./configure --prefix=/usr/local/apr [root@localhost apr-1.4.5]# make [root@localhost apr-1.4.5]# make install
2.解決APR-util not found問題
[root@localhost bin]# tar -zxf apr-util-1.3.12.tar.gz [root@localhost apr-util-1.3.12]# ./configure --prefix=/usr/local/apr-util -with-apr=/usr/local/apr/bin/apr-1-config [root@localhost apr-util-1.3.12]# make [root@localhost apr-util-1.3.12]# make install
三、解決pcre-config for libpcre not found問題
[root@localhost ~]# unzip pcre-8.31.zip [root@localhost ~]# cd pcre-8.31 [root@localhost pcre-8.31]# ./configure --prefix=/usr/local/pcre [root@localhost pcre-8.31]# make[root@localhost pcre-8.31]# make install
若是已經存在/etc/httpd/httpd.conf,請先卸載或者關閉centos系統自帶的web服務,執行命令:chkconfig httpd off,再或者把centos自帶的httpd服務的80端口改成其餘端口,只要不與咱們安裝的Apache服務的端口衝突就能夠啦。
•啓動Apache:/usr/local/apache2/bin/apachectl start
•中止Apache:/usr/local/apache2/bin/apachectl stop
•重啓Apache:/usr/local/apache2/bin/apachectl restart
網站放在/usr/local/apache2/htdocs目錄下
在IE中經過http://localhost:80,若是看到頁面中顯示「It works!」字樣,則表明Apache驗證經過。若是網站的index後綴是PHP格式的,則要修改httpd.conf配置文件(/usr/local/apache2/conf),在DirectoryIndex增長 index.php。
# # DirectoryIndex: sets the file that Apache will serve if a directory # is requested. # <IfModule dir_module> DirectoryIndex index.html index.php </IfModule>