728x90
반응형
yum -y install gcc-c++
yum -y install zlib-devel
yum -y install openssl-devel
yum -y install expat-devel
yum -y install wget gcc gcc-c++ zlib-devel openssl-devel
tar -xvzf httpd-2.4.33.tar.gz
tar -xvzf pcre-8.42.tar.gz
tar -xvzf apr-util-1.6.1.tar.gz
tar -xvzf apr-1.6.3.tar.gz
cd pcre-8.42/
./configure --prefix=[pcre 설치 할 경로]
make & make install
cd ../
cd apr-1.6.3/
./configure --prefix=[apr 설치 할 경로]
make
make install
cd ../
cd apr-util-1.6.1/
./configure --with-apr=[apr 설치 경로] --prefix=[apr-util 설치 할 경로]
make
make install
cd ../
cd httpd-2.4.33/
./configure --prefix=[아파치 설치 할 경로] --with-apr=[apr 설치 경로] --with-apr-util=[apr-util 설치 경로] --with-pcre=[pcre 설치 경로] --enable-proxy --enable-so --enable-rewrite --enable-ssl
make
make install
반응형
'와사비크래커 IT Tip > WEB WAS' 카테고리의 다른 글
[WEB/WAS] apache tomcat 7 설치 (0) | 2020.10.13 |
---|