Throttling respawn due to port 9010
I am getting the following error every ten seconds on one of my web servers:
2/3/09 10:28:02 AM (48)Address already in use: make_sock: could not bind to address 127.0.0.1:9010
2/3/09 10:28:02 AM no listening sockets available, shutting down
2/3/09 10:28:02 AM Unable to open logs
2/3/09 10:28:02 AM (org.apache.httpd[46421]) Exited with exit code: 1
2/3/09 10:28:02 AM (org.apache.httpd) Throttling respawn: Will start in 10 seconds
In my httpd.conf file I have this:
#ServerName www.example.com
Listen 127.0.0.1:9010
DocumentRoot "/var/empty"
ErrorLog "/var/log/apache2/error_log"
<Directory "/var/empty">
Order Deny,Allow
Deny from All
</Directory>
Can I just comment this line??:
Listen 127.0.0.1:9010
Or would this cause problems with writing to the error_log?
Support all Mac machines, Mac OS X (10.5.5)