操作参考教程:https://www.cnblogs.com/haw2106/p/9839655.html
易错步骤梳理:
【修正一】
b:解决APR-util not found问题>>>>
1.[root@xt test]# tar -zxf apr-util-1.3.12.tar.gz
2.[root@xt test]# cd apr-util-1.3.12
3.[root@xt apr-util-1.3.12]# ./configure --prefix=/usr/local/apr-util -with-pr=/usr/local/apr/
(原指令多了个空格)
4.[root@xt apr-util-1.3.12]# make && make install
【修正二】
c:解决pcre-config for libpcre not found问题>>>>>>>>>
手动安装仍有错误,可以使用自动安装指令“yum -y install pcre-devel”,配置去掉这一项直接装
./configure --prefix=/usr/local/Apache2 --enable-module=shared --with-apr=/usr/local/apr --with-apr-util=/usr/local/apr-util
【修正三】
按上面教程安装后的路径为:/usr/local/Apache2
cd /usr/local/Apache2/bin
./apachectl -k start
./apachectl -k restart
./apachectl -k stop