httpd: Could not reliably determine the server's fully qualified domain name, using 127.0.0.1 for ServerName

httpd: Could not reliably determine the server's fully qualified domain name, using 127.0.0.1 for ServerName

解决办法非常简单:

#vim /web/apache/conf/httpd.conf (在这里/web/apahce是我安装apache的目录,你默认安装的话应该是/usr/local/apache2/icons)

找到#ServerName www.example.com:80   把#去掉,再重启apache即可没事了。

现象:

bogon:~/webserver/httpd-2.0.59 # /usr/local/apache2/bin/apachectl start
httpd: Could not determine the server's fully qualified domain name, using 127.0.0.1 for ServerName
httpd (pid 20183) already running


這個問題應該是沒有在 /etc/httpd/conf/httpd.conf 中設定 ServerName  

vi /usr/local/apache2/conf/httpd.conf


最简单的,修改httpd.conf文件,增加:
ServerName www.example.com:80
我的改为:

ServerName www.example.com:80



再次启动就正常了!
------------------------------------------------------------------------------------------------------------------------------------------------------------
AH00558: httpd: Could not reliably determine the server's fully qualified domain name, using localhost.localdomain. Set the 'ServerName' directive globally to suppress this message
httpd (pid 7907) already running
修改:去掉注释即可。
# If your host doesn't have a registered DNS name, enter its IP address here.
#
ServerName www.example.com:8080


解决方案:
进入apache的安装目录:
Windows : D:\Program Files\Apache Software Foundation\Apache2.2\conf
linux : /usr/local/apache/conf
用记事本打开httpd.conf
将里面的#ServerName localhost:80注释去掉即可。
再执行httpd
然后可以通过浏览器访问http://localhost:80,如果页面显示“It works!”,即表示apache已安装并启动成功。


( ! ) Warning: count(): Parameter must be an array or an object that implements Countable in /var/www/vhosts/shan.info/httpdocs/templates/gk_publisher/html/com_k2/templates/default/item.php on line 169
Call Stack
#TimeMemoryFunctionLocation
10.0012412600{main}( ).../index.php:0
20.08144262776Joomla\CMS\Application\SiteApplication->execute( ).../index.php:49
30.08144262776Joomla\CMS\Application\SiteApplication->doExecute( ).../CMSApplication.php:196
40.471611453856Joomla\CMS\Application\SiteApplication->dispatch( ).../SiteApplication.php:233
50.472911478392Joomla\CMS\Component\ComponentHelper::renderComponent( ).../SiteApplication.php:194
60.473711533720Joomla\CMS\Component\ComponentHelper::executeComponent( ).../ComponentHelper.php:377
70.474011561120require_once( '/var/www/vhosts/shan.info/httpdocs/components/com_k2/k2.php' ).../ComponentHelper.php:402
80.482511960752K2ControllerItem->execute( ).../k2.php:64
90.482511960752K2ControllerItem->display( ).../BaseController.php:710
100.492012611456K2ControllerItem->display( ).../item.php:78
110.492012611456K2ControllerItem->display( ).../controller.php:19
120.496112982496Joomla\CMS\Cache\Controller\ViewController->get( ).../BaseController.php:663
130.497513002864K2ViewItem->display( ).../ViewController.php:102
140.567315933968K2ViewItem->display( ).../view.html.php:742
150.567315933968K2ViewItem->loadTemplate( ).../HtmlView.php:230
160.568816106904include( '/var/www/vhosts/shan.info/httpdocs/templates/gk_publisher/html/com_k2/templates/default/item.php' ).../HtmlView.php:701

( ! ) Notice: Only variables should be assigned by reference in /var/www/vhosts/shan.info/httpdocs/templates/gk_publisher/html/com_k2/templates/default/item.php on line 478
Call Stack
#TimeMemoryFunctionLocation
10.0012412600{main}( ).../index.php:0
20.08144262776Joomla\CMS\Application\SiteApplication->execute( ).../index.php:49
30.08144262776Joomla\CMS\Application\SiteApplication->doExecute( ).../CMSApplication.php:196
40.471611453856Joomla\CMS\Application\SiteApplication->dispatch( ).../SiteApplication.php:233
50.472911478392Joomla\CMS\Component\ComponentHelper::renderComponent( ).../SiteApplication.php:194
60.473711533720Joomla\CMS\Component\ComponentHelper::executeComponent( ).../ComponentHelper.php:377
70.474011561120require_once( '/var/www/vhosts/shan.info/httpdocs/components/com_k2/k2.php' ).../ComponentHelper.php:402
80.482511960752K2ControllerItem->execute( ).../k2.php:64
90.482511960752K2ControllerItem->display( ).../BaseController.php:710
100.492012611456K2ControllerItem->display( ).../item.php:78
110.492012611456K2ControllerItem->display( ).../controller.php:19
120.496112982496Joomla\CMS\Cache\Controller\ViewController->get( ).../BaseController.php:663
130.497513002864K2ViewItem->display( ).../ViewController.php:102
140.567315933968K2ViewItem->display( ).../view.html.php:742
150.567315933968K2ViewItem->loadTemplate( ).../HtmlView.php:230
160.568816106904include( '/var/www/vhosts/shan.info/httpdocs/templates/gk_publisher/html/com_k2/templates/default/item.php' ).../HtmlView.php:701
back to top