分类: LINUX
2014-09-25 14:19:42
Redhat下用rpm装完apache后启动报错的解决方案
从光盘里用rpm -ivh httpdXXX的命令装完apache后,在终端输入apachectl start后,报错:
httpd: Could not reliably determine the server's fully qualified domain name, using 192.168.245.133 for ServerName
解决方案:
# cd /etc/httpd/conf
vi httpd.conf
用/ServerName找到以下行:
#ServerName
并在其下方一行添加:
ServerName localhost:80
保存并退出。
验证:
# apachectl start
发现错误信息没了。
在浏览器中输入,显示Red Hat Enterprise Linux Test Page界面则表示apache安装成功。