报错如下:
AH00558: httpd: Could not reliably determine the server's fully qualified domain name, using xxx.xxx.xxx.xxx. Set the 'ServerName' directive globally to suppress this message
我进行了两次尝试:
- 打开httpd目录下的
httpd.conf
vim /etc/httpd/conf/httpd.conf
加上ServerName localhost:80
- 打开httpd目录下的
httpd.conf
将var/www/html/与/var/www放宽访问权限的目录级别 None 改成 ALL,类似如下
<Directory "/var/www">
AllowOverride ALL
# Allow open access:
Require all granted
</Directory>
并添加下面内容:
ServerName localhost

记得重起httpd
systemctl restart httpd

本文详细记录了在Apachehttpd服务器中遇到的“Couldnotreliablydeterminetheserver'sfullyqualifieddomainname”错误的解决过程。通过修改httpd.conf文件中的ServerName指令,并调整目录权限设置,成功解决了域名识别问题。

被折叠的 条评论
为什么被折叠?



