溫馨提示×

溫馨提示×

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

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

centos6.5下Apache 安裝

發(fā)布時間:2020-06-24 13:07:34 來源:網(wǎng)絡 閱讀:720 作者:夢里天空藍 欄目:開發(fā)技術

1.下載apache  www.apache.org 找到相應的地址復制后 weget即可,也可以用下面這個


wget http://mirrors.cnnic.cn/apache/httpd/httpd-2.4.23.tar.gz
tar -xf httpd-2.4.23.tar.gz
./configure 
--prefix=/application/apache2.4.23
--enable-deflate 
--enable-expires
--enable-header 
--enable-modules=most 
--enable-rewrite
--enable-so
--with-mpm=worker

解釋一下上面的參數(shù):

--prefix 安裝路徑

--enable-modules=most 使用大部分常用模塊

--enable-rewrite 重寫模塊

--with-mpm=work 運行方式為一個主進程若干個子線程,還可以配置為進程,配置為進程的優(yōu)點是更穩(wěn)定,但是同時也更慢,更耗費cpu資源,當前主流都是把apache作為靜態(tài)服務器使用所以使用work就可以了。如果你要和php等程序做配合可以設置為進程方式工作。


2.進行到這一步的時候出現(xiàn)了錯誤提示找不到apr,逐回到apache.org下載 apr和apr-util


wget http://mirrors.cnnic.cn/apache/apr/apr-1.5.2.tar.gz

./configure --prefix=/application/apr
make
make install

wget http://mirrors.cnnic.cn/apache/apr/apr-util-1.5.4.tar.gz 

./configure --prefix=/application/apr-util --with-apr=/application/apr
make
make install


3.重新安裝apache,進入apache解壓縮目錄


./configure 
--prefix=/application/apache2.4.23
--enable-deflate 
--enable-expires
--enable-header 
--enable-modules=most 
--enable-rewrite
--enable-so
--with-mpm=worker
--with-apr=/application/apr --with-apr-util=/application/apr-util


4.繼續(xù)報錯

checking whether to enable mod_deflate... configure: error: mod_deflate has been requested but can not be built due to prerequisite failures

這是因為沒有安裝zlib包,逐 yum 安裝之

yum install zlib-devel


5.ok 裝好后繼續(xù) make apache 這次沒有問題了 繼續(xù) make install 至此安裝完畢


6.修改/application/apache2.4.23/conf/httpd.conf 

找到#ServerName
去掉# 更改為: 
ServerName localhost:80

7.啟動apache

/application/apache2.4.23/bin/httpd -k start


8.測試一下

curl 本機ip 如果 返回 it works 證明apache已經(jīng)可以正常運行了


向AI問一下細節(jié)

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

AI