1分钟
编译安装 httpd
tar xvf httpd-2.4.33.tar.bz2
tar xvf apr-1.6.3.tar.gz
tar xvf apr-util-1.6.1.tar.gz
cp -av apr-util-1.6.1 httpd-2.4.33/srclib/apr-util
cp -av apr-1.6.3 httpd-2.4.33/srclib/apr
./configure –prefix=/app/httpd24 \
–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
make && make install
echo PATH=/app/httpd24/bin:$PATH > /etc/profile.d/lamp.sh
. /etc/profile.d/lamp.sh
开启httpd服务
apachectl
学员评价