Michael Lynch wrote: > Having a problem getting Apache server to start up. > Says adress is already in use > Here is what im getting when I try to start it. > > > [EMAIL PROTECTED] sbin]# ./service httpd start > Starting httpd: (98)Address already in use: make_sock: could not bind to > address xxx.xxx.xxx.xxx:80 > no listening sockets available, shutting down > Unable to open logs > > Can anybody help me with this?
Probably you needed to perform a "restart" operation instead of a "start". Typing "Service httpd" will show the legal commands. I recommend looking at status, configtest, and graceful via man apachectl But, for future reference, to see if any programs have port 80 open, run this netstat -ant and look for an entry ending with :80 in the "Local Address" column (4th col). Further, to see what specific program has port 80 open, add the -p option, but that requires you run it as root sudo netstat -antp or even sudo netstat -antp | grep ":80" Regards, ..jim -- [email protected] http://www.kernel-panic.org/cgi-bin/mailman/listinfo/kplug-newbie
