httpd ~ no virtualhosts

Wynand

Verified User
Joined
Aug 10, 2007
Messages
9
Hi,

Stopping httpd: [FAILED]
Starting httpd: [Mon Jun 08 17:21:56 2009] [warn] NameVirtualHost 94*.*.*:80 has no VirtualHosts
[Mon Jun 08 17:21:56 2009] [warn] NameVirtualHost 94.*.*.*:443 has no VirtualHosts

This is the result of service httpd start. The fun thing is that the only thing I did in the meanwhile (had to reboot after the box hung from a mysql check) was checking some tables.

The links to the virtual hosts files in the httpd.conf from DA are intact, putting a domain manually in <virtualhosts> tags doesn't work.
Host OS is Centos 5.2, Apache 2.2, reboots won't work.

Any suggestions?
 
Last edited:
It's a fact anyway.
[root@server ~]# service httpd start
Starting httpd: [Mon Jun 08 18:37:47 2009] [warn] NameVirtualHost 94.75.207.173:80 has no VirtualHosts
[Mon Jun 08 18:37:47 2009] [warn] NameVirtualHost 94.75.207.173:443 has no VirtualHosts

[root@server ~]# service httpd restart
Stopping httpd: [FAILED]
Starting httpd: [Mon Jun 08 18:37:59 2009] [warn] NameVirtualHost 94.75.207.173:80 has no VirtualHosts
[Mon Jun 08 18:37:59 2009] [warn] NameVirtualHost 94.75.207.173:443 has no VirtualHosts

[root@server ~]# service httpd status
httpd is stopped
[root@server ~]#
 
No its not a fact you need to look in your error log to why its not starting.

Or run:

httpd -X -e debug

to run in debug mode.
 
[Mon Jun 08 20:30:13 2009] [error] (17)File exists: Cannot create
SSLMutex with file `/var/log/httpd/ssl_mutex'
Configuration Failed

Is visable a ton of times in the error_log file, but google isn't much of a help here. Suggestions?
 
If you google for "Cannot create SSLMutex with file" you can find alot of results. Most of them pointing to a full disk drive. Make sure none of your harddrives are full.
 
It's not exactly full, as df shows.
[root@server ~]# df -h
Filesystem Size Used Avail Use% Mounted on
/dev/sda2 452G 32G 396G 8% /
/dev/sda1 99M 18M 77M 19% /boot
tmpfs 1.7G 0 1.7G 0% /dev/shm
 
Back
Top