(network.c.379) can’t bind to port: 80 Address already in use

ipslighttpd

I have one server running both apache and lighttpd on two separate IPs. After rebooting the server I can't access the stuff on lighttpd:

/etc/init.d/lighttpd restart
(network.c.379) can't bind to port: 80 Address already in use

Best Answer

do a netstat -pntle | grep :80 to see which process is running on this port. If it is apache, you need to configure it to listen only on one IP.

Related Topic