天天看點

linux安裝包apr安裝說明,Linux下安裝Apr及其Apr-util的基本步驟

在Linux下安裝Apache需要安裝的插件Apr及其Apr-util插件

Linux下安裝Apr及其Apr-util的基本步驟

1.安裝apr

# gzip -d apr-1.4.8.tar.gz

# tar xvf apr-1.4.8.tar

# cd apr-1.4.8

# ./configure --prefix=/opt/apr

(注意:如果執行時出現此錯誤

configure: error: no acceptable C compiler found in $PATH

執行:yum -y install gcc

前提條件:該機器可通路網際網路。

然後再執行:./configure --prefix=/opt/apr

)

# make

# make install

2.安裝apr-util

# gzip -d apr-util-1.5.2.tar.gz

# tar xvf apr-util-1.5.2.tar

# cd apr-util-1.5.2

# ./configure --prefix=/opt/apr-util --with-apr=/opt/apr

# make

# make install

3.安裝pcre

# unzip -o pcre-8.33.zip

# cd pcre-8.33

# ./configure --prefix=/opt/pcre

(注意:如果執行時出現此錯誤

configure: error: You need a C++ compiler for C++ support

執行:yum install -y gcc gcc-c++

前提條件:該機器可通路網際網路。

然後再執行:./configure --prefix=/opt/pcre

)

# make

# make install

4.安裝apache

# gzip -d httpd-2.4.6.tar.gz

# tar xvf httpd-2.4.6.tar

# cd httpd-2.4.6

# ./configure --prefix=/opt/apache --enable-modules=all --enable-mods-shared=all --enable-proxy --enable-proxy-connect --enable-proxy-ftp --enable-proxy-http --enable-proxy-ajp --enable-proxy-balancer --enable-rewrite --enable-status --with-apr=/opt/apr