CentOS6.3でApache2.4.6をソースからインストール
CentOS6.3でApache2.4.6をソースからインストール
環境
# uname -a
Linux ttakahashi 2.6.32-279.el6.x86_64 #1 SMP Fri Jun 22 12:19:21 UTC 2012 x86_64 x86_64 x86_64 GNU/Linux
# cat /etc/redhat-release
CentOS release 6.3 (Final)
1.ソースファイルのダウンロード
# cd /usr/local/src
# wget http://ftp.jaist.ac.jp/pub/apache//httpd/httpd-2.4.6.tar.gz
# wget http://ftp.jaist.ac.jp/pub/apache//apr/apr-1.4.8.tar.gz
# wget http://ftp.jaist.ac.jp/pub/apache//apr/apr-util-1.5.2.tar.gz
# wget ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-8.33.tar.gz
2.PCRE をインストールする
# tar xvfz pcre-8.33.tar.gz
# cd pcre-8.33
# ./configure
# make
# make install
3.Apacheインストール
# tar xvfz httpd-2.4.6.tar.gz
# tar xvfz apr-1.4.6.tar.gz
# tar xvfz apr-util-1.5.2.tar.gz
# mv apr-1.4.6 httpd-2.4.6/srclib/
# mv apr-util-1.5.2 httpd-2.4.6/srclib/
# ./configure --with-included-apr
# make
# make install
4.apache起動
# /usr/local/apache2/bin/apachectl start
# curl xxx.xxx.xxx.xxx
<html><body><h1>It works!</h1></body></html>
# uname -a
Linux ttakahashi 2.6.32-279.el6.x86_64 #1 SMP Fri Jun 22 12:19:21 UTC 2012 x86_64 x86_64 x86_64 GNU/Linux
# cat /etc/redhat-release
CentOS release 6.3 (Final)
# cd /usr/local/src
# wget http://ftp.jaist.ac.jp/pub/apache//httpd/httpd-2.4.6.tar.gz
# wget http://ftp.jaist.ac.jp/pub/apache//apr/apr-1.4.8.tar.gz
# wget http://ftp.jaist.ac.jp/pub/apache//apr/apr-util-1.5.2.tar.gz
# wget ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-8.33.tar.gz
# tar xvfz pcre-8.33.tar.gz
# cd pcre-8.33
# ./configure
# make
# make install
# tar xvfz httpd-2.4.6.tar.gz
# tar xvfz apr-1.4.6.tar.gz
# tar xvfz apr-util-1.5.2.tar.gz
# mv apr-1.4.6 httpd-2.4.6/srclib/
# mv apr-util-1.5.2 httpd-2.4.6/srclib/
# ./configure --with-included-apr
# make
# make install
# /usr/local/apache2/bin/apachectl start
# curl xxx.xxx.xxx.xxx
<html><body><h1>It works!</h1></body></html>
Author And Source
この問題について(CentOS6.3でApache2.4.6をソースからインストール), 我々は、より多くの情報をここで見つけました https://qiita.com/nobu_blast/items/d7a8906b4135e40e4aa8著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .