Je crois que macos embarque un apache :
$ sudo lsof -i :80
Tu auras les pid des processus/threads qui écoutent sur le port 80 (syntaxe linux, je ne sais pas si c'est la même chez toi). Exemple :
- lsof -i :80
Mot de passe :
COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME
transmiss 2864 debian-transmission 15u IPv4 564463 0t0 TCP nikita.local:53686->deblan.tv:http (CLOSE_WAIT)
apache2 4152 root 4u IPv6 12442 0t0 TCP *:http (LISTEN)
apache2 4900 simon 4u IPv6 12442 0t0 TCP *:http (LISTEN)
apache2 4901 simon 4u IPv6 12442 0t0 TCP *:http (LISTEN)
apache2 4902 simon 4u IPv6 12442 0t0 TCP *:http (LISTEN)
apache2 4903 simon 4u IPv6 12442 0t0 TCP *:http (LISTEN)
apache2 4904 simon 4u IPv6 12442 0t0 TCP *:http (LISTEN)
ff 8705 simon 55u IPv4 585039 0t0 TCP nikita.local:54070->we-in-f113.1e100.net:http (ESTABLISHED)
ff 8705 simon 74u IPv4 583366 0t0 TCP nikita.local:54146->we-in-f113.1e100.net:http (ESTABLISHED)
Tu chopes un des pid et tu fais :
$ ps aux | grep 4152 | grep -v grep
root 4152 0.0 0.2 114284 19580 ? Ss 18:21 0:00 /usr/sbin/apache2 -k start
simon 17156 0.0 0.0 3568 792 pts/6 S+ 21:06 0:00 grep 4152
Sur ma machine, c'est un apache (/usr/sbin/apache2) qui écoute sur le port 80.