linuxでのApacheのインストール


Apacheのインストール、エラー:Cannot use an external APR with the bundled APR-util
バージョンはtomcat-connectors-1.2.37-srcです.gz
エラーメッセージにはAPRとAPR-utilのインストールが必要です.
適切な構成は次のとおりです.
 
[root@Redhat~]# tar -zxvf httpd-2.2.23.tar.gz  #  apache    
[root@Redhat~]#cd httpd-2.2.23 
[root@Redhat~]#cd srclib/apr
[root@Redhat~]#./configure --prefix=/usr/local/apr
[root@Redhat~]#make && make install
[root@Redhat~]#cd srclib/apr-util
[root@Redhat~]#./configure --prefix=/usr/local/apr-util --with-apr=/usr/local/apr
[root@Redhat~]#make && make install
[root@Redhat~]#./configure --prefix=/usr/local/apache2 --enable-deflate --enable-expires --enable-headers --enable-modules=most --enable-so --with-mpm=worker --enable-rewrite --with-apr=/usr/local/apr --with-apr-util=/usr/local/apr-util
[root@Redhat~]#make && make install

apacheを起動[root@Redhat bin]./apachectl start
「httpd:Could not reliaby determine the server's fully qualified domain name,using 127.0.0.1 for ServerName」のソリューションは、ローカル・サービス名ServerName:localhostが構成されていないことを意味します.
apacheのインストールディレクトリに入ります(自分のインストールパスに準じて)
 
[root@Redhat bin]/usr/local/apache2/conf

見つけたconf;httpdを編集します.confファイル、#ServerNameを検索し、ServerName localhost:80を追加
[root@Redhat conf]# ls
extra  httpd.conf  magic  mime.types  original
[root@Redhat conf]# vi httpd.conf
#ServerName www.example.com:80
ServerName localhost:80

再起動apache:
 
[root@Redhat apache2]# ./bin/apachectl restart

 
 
 
apacheサーバへのアクセス:http://localhost  
応答結果:It works! 
インストールに成功しました.