Announcement

Collapse
No announcement yet.

getting warning message

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • getting warning message

    Hello I got [warn] message when I usually type below command.
    root@server01 [~]# httpd -G | grep mod_fcgid >/dev/hull && echo OK
    [Wed Dec 12 10:55:07 2012] [warn] module hostinglimits_module is already loaded, skipping
    [Wed Dec 12 10:55:07 2012] [warn] NameVirtualHost 127.0.0.1:80 has no VirtualHosts

    could you give me an idea?

  • #2
    Hi,

    The first error:

    [Wed Dec 12 10:55:07 2012] [warn] module hostinglimits_module is already loaded, skipping

    is generated due to the fact that hostinglimits is loaded twice -- most probably once in the httpd.conf:

    LoadModule hostinglimits_module modules/mod_hostinglimits.so

    and the second time in the hosting limit configuration file which is also loaded in the httpd.conf:

    Include "/usr/local/apache/conf/modhostinglimits.conf"

    [~]# cat "/usr/local/apache/conf/modhostinglimits.conf"
    LoadModule hostinglimits_module /etc/httpd/modules/mod_hostinglimits.so

    You can safely ignore this warning, no harm any way. If you insist on resolving this you can simply remove on the the lines that load the module.

    As for --- NameVirtualHost 127.0.0.1:80 has no VirtualHosts --- I believe this is a warning due to no virtual host in the httpd.conf for 127.0.0.1:80. You can simply add the following line:

    NameVirtualHost 127.0.0.1:80

    and reload the apache. Anyway both warnings should not affect your web service.

    Comment


    • #3
      thanks you so much for your kind your idea make bright

      I was added

      ServerName server01.xxx.com
      DocumentRoot /usr/local/apache/htdocs
      ServerAdmin support@khmerwebhost.com
      UserDir disable

      the problem had been solve.

      thanks you so much.

      Comment

      Working...
      X