If you'd got the the following error while starting Httpd service ,do the steps
" (98)Address already in use: make_sock: could not bind to address 80"
First check and make sure that the port 80/443 is not being used by any other service or application using the netstat command, by
# netstat -tulpn| grep :80If port 80 is bind to httpd, kill all process by ,
# killall -9 httpdNow start the httpd service by,
# /etc/init.d/httpd start
That's it. :-)
No comments:
Post a Comment