您好,登錄后才能下訂單哦!
今天小編給大家分享一下Centos下怎么搭建Apache環境的相關知識點,內容詳細,邏輯清晰,相信大部分人都還太了解這方面的知識,所以分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后有所收獲,下面我們一起來了解一下吧。
Apache是世界使用排名第一的Web服務器軟件。它可以運行在幾乎所有廣泛使用的計算機平臺上,由于其跨平臺和安全性被廣泛使用,是最流行的Web服務器端軟件之一。它快速、可靠并且可通過簡單的API擴充,將Perl/Python等解釋器編譯到服務器中。
安裝之前先將服務器的防火墻關掉。
systemctl stop firewalld systemctl disable firewall
第一步:
安裝apr
下載:
wget -c http://mirrors.tuna.tsinghua.edu.cn/apache//apr/apr-1.6.3.tar.bz2
解壓該文件:
tar -jvxf apr-1.6.3.tar.bz2
檢測:
cd apr-1.6.3 ./configure --prefix=/usr/local/apr/
編譯:
make make install
第二步:
安裝apr-util
下載:
wget -c http://mirrors.tuna.tsinghua.edu.cn/apache//apr/apr-util-1.6.1.tar.bz2
解壓該文件:
tar -jvxf apr-util-1.6.1.tar.bz2
檢測:
cd apr-util-1.6.3 ./configure --prefix=/usr/local/apr-util/ --with-apr=/usr/local/apr/
編譯:
makemake install
第三步:
安裝pcre
下載:
wget -c http://ftp.pcre.org/pub/pcre/pcre-8.42.tar.bz2
解壓該文件:
tar -jvxf pcre-8.42.tar.bz2
檢測:
cd pcre-8.42./configure --prefix=/usr/local/pcre/
編譯:
makemake install
第四步: 安裝httpd
下載:
wget -c http://mirrors.cnnic.cn/apache/httpd/httpd-2.4.29.tar.bz2
解壓該文件:
tar -jvxf httpd-2.4.29.tar.bz2
檢測:
cd httpd-2.4.29./configure --prefix=/usr/local/httpd/ --with-apr=/usr/local/apr/ --with-apr-util=/usr/local/apr-util/ --with-pcre=/usr/local/pcre/
編譯:
makemake install
第五步:
配置/usr/local/apache2/conf/httpd.confServerName www.examda.com:80改為ServerName localhost:80
第六步:
啟動apache服務
/usr/local/apache2/bin/apachectl start
使用瀏覽器訪問本地IP
出現It works!成功
(1)configure: error: APR not found. Please read the documentation.
這是沒有安裝apr或者apr安裝失敗導致的,重新安裝apr。
安裝請查看第一步。
(2)configure: error: APR-util not found. Please read the documentation.
這是沒有安裝apr-util或者apr-util安裝失敗導致的,重新安裝apr-util。
安裝請查看第二步。
(3)configure: error: no acceptable C compiler found in $PATH
這是沒有安裝gcc編譯器或者gcc編譯器安裝失敗導致的,重新安裝gcc。
yum install -y gcc
(4)xml/apr_xml.c:35:19: 致命錯誤:expat.h:沒有那個文件或目錄
這是沒有安裝expat-devel或者expat-devel安裝失敗導致的,重新安裝expat-devel。
yum install -y expat-devel
(5)configure: error: Invalid C++ compiler or C++ compiler flags
這是沒有安裝gcc-c++或者gcc-c++安裝失敗導致的,重新安裝gcc-c++。
yum install -y gcc-c++
(6)configure: error: pcre-config for libpcre not found. PCRE is required and available from http://pcre.org/
這是沒有安裝pcre或者pcre安裝失敗導致的,重新安裝pcre。
安裝請查看第三步。
以上就是“Centos下怎么搭建Apache環境”這篇文章的所有內容,感謝各位的閱讀!相信大家閱讀完這篇文章都有很大的收獲,小編每天都會為大家更新不同的知識,如果還想學習更多的知識,請關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。