wget http://mirror.bit.edu.cn/apache//httpd/httpd-2.4.27.tar.gz
http://mirror.bit.edu.cn/apache//apr/apr-util-1.6.0.tar.gz
http://mirror.bit.edu.cn/apache//apr/apr-1.6.2.tar.gz
yum -y install pcre-devel openssl-devel
yum -y groupinstall "Development tools"
apr 编译安装:
./configure --prefix=/app/apr
make && make install
apr util 编译安装
yum install expat-devel
./configure --prefix=/app/apr-util --with-apr=/app/apr
make && make install
mv apr-util-1.6.0 httpd-2.4.27/srclib/apr-util
mv apr-1.6.2 httpd-2.4.27/srclib/apr
http编译安装:
./configure --prefix=/app/httpd24 --with-apr=/app/apr --with-apr-util=/app/apr-util --enable-so --enable-ssl --enable-cgi --enable-rewrite --with-zlib --with-pcre --with-included-apr --enable-modules=most --enable-mpms-shared=all --with-mpm=prefork
测试;
/app/httpd24/bin/apachectl start
netstat -anpt | grep 80
http://mirror.bit.edu.cn/apache//apr/apr-util-1.6.0.tar.gz
http://mirror.bit.edu.cn/apache//apr/apr-1.6.2.tar.gz
yum -y install pcre-devel openssl-devel
yum -y groupinstall "Development tools"
apr 编译安装:
./configure --prefix=/app/apr
make && make install
apr util 编译安装
yum install expat-devel
./configure --prefix=/app/apr-util --with-apr=/app/apr
make && make install
mv apr-util-1.6.0 httpd-2.4.27/srclib/apr-util
mv apr-1.6.2 httpd-2.4.27/srclib/apr
http编译安装:
./configure --prefix=/app/httpd24 --with-apr=/app/apr --with-apr-util=/app/apr-util --enable-so --enable-ssl --enable-cgi --enable-rewrite --with-zlib --with-pcre --with-included-apr --enable-modules=most --enable-mpms-shared=all --with-mpm=prefork
测试;
/app/httpd24/bin/apachectl start
netstat -anpt | grep 80