溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

CentOS下怎么部署Apache服務(wù)

發(fā)布時間:2022-02-17 10:31:12 來源:億速云 閱讀:169 作者:iii 欄目:開發(fā)技術(shù)

本篇內(nèi)容介紹了“CentOS下怎么部署Apache服務(wù)”的有關(guān)知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領(lǐng)大家學(xué)習(xí)一下如何處理這些情況吧!希望大家仔細(xì)閱讀,能夠?qū)W有所成!

CentOS下怎么部署Apache服務(wù)

編譯安裝開發(fā)環(huán)境

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

#yum groupinstall "Development tools" "Compatibility libraries" "Chinese Support [zh]" -y

安裝man, vim, wget 工具

#yum install man vim wget -y

編譯安裝httpd

因為這次要編譯安裝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

編譯安裝apr

tar xf apr-1.5.2.tar.bz2cd apr-1.5.2
./configure --prefix=/usr/local/aprecho $? ###如果執(zhí)行結(jié)果是0,則繼續(xù)執(zhí)行make && make install

編譯安裝apr-util

tar xf apr-util-1.5.4.tar.bz2cd apr-util-1.5.4
./configure --prefix=/usr/local/apr-util --with-apr=/usr/local/aprecho $? ###如果執(zhí)行結(jié)果是0,則繼續(xù)執(zhí)行make && make install

正式開始編譯httpd-2.4.25

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

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

執(zhí)行如下命令:

yum install pcre-devel openssl openssl-devel -y
tar xf httpd-2.4.25cd 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ù)器的方法(最小化安裝)

CentOS下怎么部署Apache服務(wù) 有如上提示則繼續(xù)執(zhí)行:make && make install

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

配置httpd

關(guān)閉linux防火墻

service httpd stop

關(guān)閉SELinux

setenforce 0

復(fù)制啟動文件

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.shsource /etc/profile.d/httpd.sh

編輯httpd的配置文件:

vim /etc/httpd/httpd.conf

在ServerRoot下一行,添加 ServerName localhost

如果想把Apache服務(wù)加入到開機啟動,可以修改服務(wù)啟動腳本:

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是否啟動,是否有80端口 最后在你的瀏覽器輸入虛擬機IP地址

It works!

則Apache,安裝成功

1、編譯安裝–默認(rèn)的index.html首頁在

/usr/local/apache/htdocs

2、配置文件:

/etc/httpd/httpd.conf

3、啟動腳本:

/etc/init.d/httpd

4、cgi-bin文件目錄:

/etc/local/apache/cgi-bin

“CentOS下怎么部署Apache服務(wù)”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識可以關(guān)注億速云網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實用文章!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI