apacheのインストールをしようとしたら以下のエラーが発生した。
1 2 3 4 |
$ cd httpd-2.4.3 $ ./configure --enable-so checking for APR... no configure: error: APR not found. Please read the documentation. |
APRというモジュールがなくて、エラー終了しています。
なので、APRモジュールをインストールします。
まずは以下のサイトにアクセスしてモジュールのソースをダウンロードします。
Welcome! - The Apache Portable Runtime Project
ダウンロードページは以下
http://apr.apache.org/download.cgi
APRをダウンロード「Unix Source: apr-1.4.6.tar.gz」
APR-utilもダウンロード「Unix Source: apr-util-1.5.1.tar.gz」
aprのインストール
1 2 3 4 5 |
$ tar xvfz apr-1.4.6.tar.gz $ cd apr-1.4.6 $ ./configure $ make # make install |
apr-utilのインストール
1 2 3 4 5 |
$ tar xvfz apr-util-1.5.1.tar.gz $ cd apr-util-1.5.1 $ ./configure --with-apr=/usr/local/apr $ make # make install |
これで、再度apacheのインストールを実行すれば、このエラーが解決されているはずです。/