在阿里云的服务器上搭建环境笔记

时间:2021-11-09 13:03:41

在虚拟机上搭建过lamp后,按捺不住,就租了阿里云的云服务器,今天搭建好环境。对出现的问题进行记录下

apache 编译出错

在./configure生成编译文件后,使用make编译,结果发生了
make[2]: *** [htpasswd] Error 1
make[2]: Leaving directory ‘/usr/local/httpd-2.4.26/support’
make[1]: * [all-recursive] Error 1
make[1]: Leaving directory ‘/usr/local/httpd-2.4.26/support’

经搜索并且各种尝试,最终成功的解决方法是:
之前安装的apr和apr-util都是1.6版本的。
重新编译安装了1.5版本的apr和apr-util,最终成功。

没有iptables文件

在要开启80端口时, 发现/etc/sysconfig下没有iptables文件,
解决方法是:
写一条iptable 配置命令 比如:iptables -P OUTPUT ACCEPT
这时就会生成iptables文件
保存修改: service iptables save
然后就可以打开编辑了