tomcat connector 소스설치하기

ITWeb/서버관리 2011. 9. 7. 13:42

# 다운로드

    http://tomcat.apache.org/download-connectors.cgi

 

# 압축풀기

    tar -xvzf tomcat-connectors-1.2.31-src.tar.gz

 

# configure & make

    cd tomcat-connectors-1.2.31-src/native

# buildconf 실행 시 오류 발생    

libtoolize --force --automake --copy
./buildconf.sh: line 23: libtoolize: command not found

    이런 경우 yum -y install libtool 설치

 

    ./configure --with-apxs=/home/계정/app/httpd/bin/apxs

    make

    make install

: