centos6.4-x86-64系統更新系統自帶Apache Http Server
系統自帶Apache Http Server 版本比較老,有漏洞。現在對Apache Http Server進行升級。總體思路:先刪除老的,再安裝新的。詳細步驟如下:
1 刪除老版本
1.1 刪除老Apache
rpm -qa httpd得到的東西全部刪除(yum remove xxx)
1.2 刪老apr apr-util
yum remove apr-util-devel apr apr-util-mysql apr-docs apr-devel apr-util apr-util-docs
2 安裝Apache Http Server最新穩定版。
2.1 參考http://httpd.apache.org/docs/2.4/install.html 下載獲得apr-1.4.8.tar.gz 、 apr-util-1.5.2.tar.gz 、pcre-8.21.tar.gz、httpd-2.4.6.tar.gz。
2.2 安裝gcc
yum -y install gcc
yum -y install gcc-c++
2.3 解壓下載的壓縮包
tar -xzf apr-1.4.8.tar.gz
tar -xzf apr-util-1.5.2.tar.gz
tar -xzf httpd-2.4.6.tar.gz
tar -xzf pcre-8.21.tar.gz
2.4 安裝apr
cd apr-1.4.8
./configure --prefix=/usr/local/apr
make
make install
2.5 安裝apr-util
cd ../apr-util-1.5.2
./configure --prefix=/usr/local/apr-util --with-apr=/usr/local/apr/bin/apr-1-config
make
make install
2.6 安裝pcre
cd ../pcre-8.21
./configure --prefix=/usr/local/pcre --with-apr=/usr/local/apr/bin/apr-1-config
make
make install
2.7 安裝apache
cd ../httpd-2.4.6
./configure --prefix=/usr/local/apache --with-pcre=/usr/local/pcre --with-apr=/usr/local/apr --with-apr-util=/usr/local/apr-util
make
make install
2.8 啟動apahce
/usr/local/apache/bin/apachectl start
2.9 測試啟動是否成功
http://localhost:80
參考:
1 防火牆開啟80和22端口
/sbin/iptables -I INPUT -p tcp --dport 80 -j ACCEPT
/sbin/iptables -I INPUT -p tcp --dport 22 -j ACCEPT
/etc/rc.d/init.d/iptables save
2 設置apache 開機自啟動
/etc/rc.d/rc.local中添加/usr/local/apache/bin/apachectl start