linux(centos6.9)中成功安装httpd,成功访问前遇到两个问题:
1.启动时报:httpd: Could not reliably determine the server's fully qualified domain name
这是因为未配置serverName的原因,找到httpd.conf进入编辑,修改ServerName localhost:80
,就不会报错了。
另外查看httpd安装路径,使用whereis httpd,一般是在/etc
或者/var
下,如图:
2.成功启动后无法访问,主要是因为Linux的防火墙拦截,用命令service iptables status查看防火墙状态,如果是开着就关闭:service iptables stop。
如下图:
解决这两个问题后可正常访问。
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。