find process IDs
$ lsof -i TCP:80
output:
apache2 16442 www-data 3u IPv4 1158908 0t0 TCP s0.domain.tld:80 (CLOSE_WAIT)
...
then we kill process(es)
$ kill -9 16442
$ lsof -i TCP:80
apache2 16442 www-data 3u IPv4 1158908 0t0 TCP s0.domain.tld:80 (CLOSE_WAIT)
...
$ kill -9 16442