若是是VMware虛擬機,網卡要求「橋接」html
一、編譯安裝前首先yum 安裝「開發環境」「兼容庫」「中文支持」即執行以下命令linux
#yum groupinstall "Development tools" "Compatibility libraries" "Chinese Support [zh]" -yapache
安裝man, vim, wget 工具vim
#yum install man vim wget -y瀏覽器
二、由於此次要編譯安裝httpd2.4.25,此版本須要更高版本的apr和apr-util。ide
所以要首先編譯安裝apr和apr-util。工具
wget http://mirrors.hust.edu.cn/apache/apr/apr-1.5.2.tar.bz2spa
wget http://mirrors.hust.edu.cn/apache/apr/apr-util-1.5.4.tar.bz2orm
2.1編譯安裝aprserver
tar xf apr-1.5.2.tar.bz2
cd apr-1.5.2
./configure --prefix=/usr/local/apr
echo $? ###若是執行結果是0,則繼續執行make && make install
2.2編譯安裝apr-util
tar xf apr-util-1.5.4.tar.bz2
cd apr-util-1.5.4
./configure --prefix=/usr/local/apr-util --with-apr=/usr/local/apr
echo $? ###若是執行結果是0,則繼續執行make && make install
三、重量級選手出廠了,正式開始編譯httpd-2.4.25
wget http://mirrors.hust.edu.cn/apache/httpd/httpd-2.4.25.tar.bz2
屢次編譯經驗得知,缺乏pcre相關文件,openssl is too old
執行以下命令:
yum install pcre-devel openssl openssl-devel -y
tar xf httpd-2.4.25
cd httpd-2.4.25
./configure --prefix=/usr/local/apache --sysconfdir=/etc/httpd --with-apr=/usr/local/apr --with-apr-util=/usr/local/apr-util/
有如上提示則繼續執行:make && make install
再執行echo$?若是結果是0,則說明httpd2.4.25到此編譯成功,而後進行簡單的配置,就能夠使用了
四、配置httpd
關閉linux防火牆
service httpd stop
關閉SELinux
setenforce 0
複製啓動文件
cp /usr/local/apache/bin/apachectl /etc/init.d/httpd
把httpd的環境變量添加到「環境變量」
echo 'export PATH=$PATH:/usr/local/apache/bin' > /etc/profile.d/httpd.sh
chmod +x /etc/profile.d/httpd.sh
source /etc/profile.d/httpd.sh
編輯httpd的配置文件:
vim /etc/httpd/httpd.conf
在ServerRoot下一行,添加 ServerName localhost
若是想把Apache服務加入到開機啓動,能夠修改服務啓動腳本:
vim /etc/init.d/httpd
在第二行下添加:# chkconfig:235 85 15
# description: This is apache server
保存退出
執行命令service httpd start #提示lynx找不到???那就yum install lynx -y
執行命令netstat -ntlp #查看httpd是否啓動,是否有80端口
最後在你的瀏覽器輸入虛擬機IP地址
It works!
則Apache,安裝成功
一、編譯安裝--默認的index.html首頁在/usr/local/apache/htdocs
二、配置文件:/etc/httpd/httpd.conf
三、啓動腳本:/etc/init.d/httpd
四、cgi-bin文件目錄:/etc/local/apache/cgi-bin