Victor,

Thank you for your response. It got me thinking in the right paradigm to solve the problem. My main httpd.conf file had an Include line for including other .conf files. The problem was that the syntax of this line ended in *.conf, so all of the .conf files in the specified path were being used, and the not-current .conf files had the errors being reported.

Thanks again!

-Jonathan

Victor Trac wrote:

Is the error:
[warn] NameVirtualHost aaa.bbb.ccc.ddd:80 has no VirtualHosts
or
[warn] NameVirtualHost *:80 has no VirtualHosts

If you have a <Virtualhost aaa.bbb.ccc.ddd:80> directive, but the
error is actually "[warn] NameVirtualHost *:80 has no VirtualHosts",
then you have an extra "NameVirtualHost *:80" somewhere.  Do you have
two different NameVirtualHost directives?  Have you checked to see if
the conf file is including another config file somewhere?

-Victor

On 3/9/06, Jonathan S. Abrams <[EMAIL PROTECTED]> wrote:
Perhaps the syntax in my .conf file is wrong.  Here is a more explicit
description of my .conf file.

NameVirtualHost aaa.bbb.ccc.ddd:80
#a bunch of stuff that is commented out
<VirtualHost aaa.bbb.ccc.ddd:80>
   ServerAdmin [EMAIL PROTECTED]
   DocumentRoot ibetyouwouldliketoknowthistoo
   ServerName e.f.com:80
   CustomLog <bunch of stuff>
   ErrorLog pathoferrorlog
   ErrorDocument notgoingtosay
a plethora of aliases
</VirtualHost>

Does the </VirtualHost> tag need to be somewhere else?  I tried moving
that tag to above the aliases in my .conf file, but that did not make a
difference.  My apologies if I am "not getting it", but it appears to me
that the .conf file is proper based on your response.

Sincerely,

Jonathan

Aleksandar Skodric wrote:

Your .conf should contain something like this:

# name based virtualhost
NameVirtualHost *:80

# default  virtualhost if nothing else matches criteria
<VirtualHost _default_:80>
.....

Basicly, it seems that you have stated NameVitrualHost *:80 but have
none virtual host and that's why Apache is complainig.

Cheers,
Aleks

Jonathan S. Abrams wrote:

I am using Apache v2.0.55.  In my error log file, I am seeing the
following entry.

[warn] NameVirtualHost *:80 has no VirtualHosts

Now, looking in my .conf file, I do see a line that reads
"NameVirtualHost *:80", and it is commented out.  However, when I
uncommented it, I still received the warning noted above after
gracefully restarting.

I should note that my httpd.conf file has a reference to the .conf
file I alluded to above.  The httpd.conf file does not appear to have
any of the VirtualHost code being used.  If anyone can offer any
insight as to how to eliminate this warning message, it would be
appreciated.

Thanks for reading!

-Jonathan

---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server
Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
 "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server
Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
 "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
  "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




--
http://www.victortrac.com

---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
  "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
  "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to