Drop Down MenusCSS Drop Down MenuPure CSS Dropdown Menu

Wednesday, 5 February 2014

[FIXED](98)Address already in use: make_sock: could not bind to address 80


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 :80
 If port 80 is bind to httpd, kill all process by ,
# killall -9 httpd
 Now start the httpd service by,
# /etc/init.d/httpd start

That's it. :-)





No comments:

Post a Comment