本文主要是介绍centos7 | 安装OCSNG-server时 | AH00558: httpd: Could not reliably determine the server's fully qualifie,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
报错如下:
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
这篇关于centos7 | 安装OCSNG-server时 | AH00558: httpd: Could not reliably determine the server's fully qualifie的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!