共计 338 个字符,预计需要花费 1 分钟才能阅读完成。
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。
如下图:
解决这两个问题后可正常访问。
正文完