Parfois, quand je veux lancer mon service apache2, je me retrouve avec un : (98)Address already in use: make_sock: could not bind to address 0.0.0.0:80
La solution :
root@m0le:~# netstat -ltnp | grep ':80'
tcp6 0 0 :::80 :::* LISTEN 3734/apache2
root@m0le:~# kill -9 3734
root@m0le:~# /etc/init.d/apache2 start