CentOS6.5上怎么編譯安裝Apache服務(wù)器

本文小編為大家詳細(xì)介紹“CentOS 6.5上怎么編譯安裝Apache服務(wù)器”,內(nèi)容詳細(xì),步驟清晰,細(xì)節(jié)處理妥當(dāng),希望這篇“CentOS 6.5上怎么編譯安裝Apache服務(wù)器”文章能幫助大家解決疑惑,下面跟著小編的思路慢慢深入,一起來(lái)學(xué)習(xí)新知識(shí)吧。

成都創(chuàng)新互聯(lián)公司是一家集網(wǎng)站建設(shè),雞西梨樹(shù)企業(yè)網(wǎng)站建設(shè),雞西梨樹(shù)品牌網(wǎng)站建設(shè),網(wǎng)站定制,雞西梨樹(shù)網(wǎng)站建設(shè)報(bào)價(jià),網(wǎng)絡(luò)營(yíng)銷(xiāo),網(wǎng)絡(luò)優(yōu)化,雞西梨樹(shù)網(wǎng)站推廣為一體的創(chuàng)新建站企業(yè),幫助傳統(tǒng)企業(yè)提升企業(yè)形象加強(qiáng)企業(yè)競(jìng)爭(zhēng)力??沙浞譂M(mǎn)足這一群體相比中小企業(yè)更為豐富、高端、多元的互聯(lián)網(wǎng)需求。同時(shí)我們時(shí)刻保持專(zhuān)業(yè)、時(shí)尚、前沿,時(shí)刻以成就客戶(hù)成長(zhǎng)自我,堅(jiān)持不斷學(xué)習(xí)、思考、沉淀、凈化自己,讓我們?yōu)楦嗟钠髽I(yè)打造出實(shí)用型網(wǎng)站。

inux系統(tǒng):centos 6.5 mini版,如果是vmware虛擬機(jī),網(wǎng)卡要求“橋接”

1、編譯安裝前首先yum 安裝“開(kāi)發(fā)環(huán)境”“兼容庫(kù)”“中文支持”即執(zhí)行如下命令

#yum groupinstall "development tools" "compatibility libraries" "chinese support [zh]" -y

安裝man, vim, wget 工具

#yum install man vim wget -y

2、因?yàn)檫@次要編譯安裝httpd2.4.25,此版本需要更高版本的apr和apr-util。

因此要首先編譯安裝apr和apr-util。

wget http://mirrors.hust.edu.cn/apache/apr/apr-1.5.2.tar.bz2
wget http://mirrors.hust.edu.cn/apache/apr/apr-util-1.5.4.tar.bz2

2.1編譯安裝apr

tar xf apr-1.5.2.tar.bz2
cd apr-1.5.2
./configure --prefix=/usr/local/apr
echo $? ###如果執(zhí)行結(jié)果是0,則繼續(xù)執(zhí)行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 $? ###如果執(zhí)行結(jié)果是0,則繼續(xù)執(zhí)行make && make install

3、重量級(jí)選手出廠(chǎng)了,正式開(kāi)始編譯httpd-2.4.25

wget http://mirrors.hust.edu.cn/apache/httpd/httpd-2.4.25.tar.bz2

多次編譯經(jīng)驗(yàn)得知,缺少pcre相關(guān)文件,openssl is too old

執(zhí)行如下命令:

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/

CentOS 6.5上怎么編譯安裝Apache服務(wù)器

有如上提示則繼續(xù)執(zhí)行:make && make install

再執(zhí)行echo$?如果結(jié)果是0,則說(shuō)明httpd2.4.25到此編譯成功,然后進(jìn)行簡(jiǎn)單的配置,就可以使用了

4、配置httpd

關(guān)閉linux防火墻

service httpd stop

關(guān)閉selinux

setenforce 0

復(fù)制啟動(dòng)文件

cp /usr/local/apache/bin/apachectl /etc/init.d/httpd

把httpd的環(huán)境變量添加到“環(huán)境變量”

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

如果想把a(bǔ)pache服務(wù)加入到開(kāi)機(jī)啟動(dòng),可以修改服務(wù)啟動(dòng)腳本:

vim /etc/init.d/httpd

在第二行下添加:# chkconfig:235 85 15
                # description: this is apache server

保存退出

執(zhí)行命令service httpd start #提示lynx找不到???那就yum install lynx -y
執(zhí)行命令netstat -ntlp #查看httpd是否啟動(dòng),是否有80端口

最后在你的瀏覽器輸入虛擬機(jī)ip地址

it works!

則apache,安裝成功

1、編譯安裝--默認(rèn)的index.html首頁(yè)在/usr/local/apache/htdocs
2、配置文件:/etc/httpd/httpd.conf
3、啟動(dòng)腳本:/etc/init.d/httpd
4、cgi-bin文件目錄:/etc/local/apache/cgi-bin

讀到這里,這篇“CentOS 6.5上怎么編譯安裝Apache服務(wù)器”文章已經(jīng)介紹完畢,想要掌握這篇文章的知識(shí)點(diǎn)還需要大家自己動(dòng)手實(shí)踐使用過(guò)才能領(lǐng)會(huì),如果想了解更多相關(guān)內(nèi)容的文章,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。

當(dāng)前文章:CentOS6.5上怎么編譯安裝Apache服務(wù)器
文章出自:http://muchs.cn/article18/geeigp.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站內(nèi)鏈、面包屑導(dǎo)航、小程序開(kāi)發(fā)、網(wǎng)站收錄、動(dòng)態(tài)網(wǎng)站、服務(wù)器托管

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶(hù)投稿、用戶(hù)轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀(guān)點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話(huà):028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)

成都定制網(wǎng)站網(wǎng)頁(yè)設(shè)計(jì)