Apacheが再起動でコケる問題

Apacheの再起動で以下のエラーが出る

$ sudo /etc/init.d/httpd restart
(98)Address already in use: make_sock: could not bind to address 0.0.0.0:80

80番PortをListenしているプロセスがいるので、そのプロセスを停止してから再起動する
https://ubuntuforums.org/showthread.php?t=1636667

$ sudo netstat -ltnp | grep ':80'

tcp        0      0 0.0.0.0:8081                0.0.0.0:*                   LISTEN      2063/nginx
tcp        0      0 :::80                       :::*                        LISTEN      14891/httpd
$ sudo kill -9 14891