遇到以上问题是在启动loadrunner12自带的机票预订服务器情况下遇到的,错误提示如下图: 解决方案: 编辑httpd.conf 文件,加入一句 ServerName localhost:1080  重启服务就可以了. 1.loadrunner12的httpd.conf文件位置,如果loadrunner12是默认安装的情况下,位置在(C:\Program Files (x86)\HP\LoadRunner\WebTours\conf) 2.修改httpd.conf文件,找到 ServerNa…
解决方案: 用记事本打开 httpd.conf 将里面的 #ServerName localhost:80 注释去掉即可. 再执行 httpd 然后可以通过浏览器访问 http://localhost:80 ,如果页面显示 "It works!" ,即表示apache已安装并启动成功.…
vi /etc/httpd/conf/httpd.conf   加入一句  ServerName  localhost:80 参考:https://www.cnblogs.com/52linux/archive/2012/03/24/2415637.html…
测试Apache服务器: 重启apache: sudo /usr/local/apache/bin/apachectl restart 若出现错误: httpd: Could not reliably determine the server's fully qualified domain name...... 解决办法: 1)进入apache的安装目录:(视个人安装情况而不同) [root@XXXX]# cd /usr/local/apache/conf 2)编辑httpd.conf文件 […
启动apache遇到提示: [root@bqh-119 conf]# ../bin/apachectl -thttpd: apr_sockaddr_info_get() failed for bqh-119httpd: Could not reliably determine the server's fully qualified domain name, using 127.0.0.1 for ServerNameSyntax OK[root@bqh-119 conf]# ../bin/ap…
安装好apache启动httpd服务时,出现httpd: Could not reliably determine the server's fully qualified domain name, using XXX for ServerName. 网上找了不少资料,叫修改安装apache根目录下的httpd/conf/httpd.conf配置文件 1.打开apache_home/httpd/conf/httpd.conf 2.找到 #ServerName www.example.com:80…
重启服务器时报错: AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 10.0.2.15. Set the 'ServerName' directive globally to suppress this message 解决办法:$ sudo vi /etc/apache2/apache2.conf              最后加入一句: ServerN…
启动apache提示 : apache2: Could not reliably determine the server's fully qualified domain name, using 127.0.1.1 for ServerName ... waiting apache2: Could not reliably determine the server's fully qualified domain name, using 127.0.1.1 for ServerName (1)…
apache2: Could not reliably determine the server's fully qualified domain name, using 127.0.1.1 for ServerName sudo vim /etc/apache2/apache2.conf加入ServerName www.mypms.com即可…
vi /etc/httpd/conf/httpd.conf加入一句 ServerName localhost:80…