problem with apache

adamp

Verified User
Joined
Jan 11, 2007
Messages
137
[root@server ~]# service httpd restart
Stopping httpd: [FAILED]
Starting httpd: [Sun Dec 23 00:06:07 2007] [warn] module php5_module is already loaded, skipping
Warning: DocumentRoot [/home/edendahan/domains/suspended/just] does not exist
Warning: DocumentRoot [/home/edendahan/domains/suspended/just] does not exist
Warning: DocumentRoot [/home/edendahan/domains/suspended/topsite] does not exist
Warning: DocumentRoot [/home/edendahan/domains/suspended/topsite] does not exist
Warning: DocumentRoot [/home/edendahan/domains/suspended/forum] does not exist
(98)Address already in use: make_sock: could not bind to address [::]:80
(98)Address already in use: make_sock: could not bind to address 0.0.0.0:80
no listening sockets available, shutting down
Unable to open logs
[FAILED]
[root@server ~]#

help me please
 
(98)Address already in use: make_sock: could not bind to address [::]:80
(98)Address already in use: make_sock: could not bind to address 0.0.0.0:80
no listening sockets available, shutting down
Unable to open logs
[FAILED]
It is clear that Port 80 is somehow busy or used by another service. Run these commands to find out:
netstat -A inet -lnp and
lsof -i tcp:80 and
lsof -i tcp:443

Also, it is likely that the main or a client's httpd.conf file(s) have an entry that confuses Apache such as:
Include "/etc/httpd/conf.d/*"
or
Listen: XX (where XX is the number for Apache Port)

Follow this link which gives you more information: http://servertune.com/kbase/?View=entry&EntryID=226

If that doesn't help, you can seek help from your host, or you can seek professional help.
 
Last edited:
Back
Top