In my debian PC i had a nginx server, but i removed it completely. Now i have permanently :80 port busy.
I ran any kind of command for stop those services, but they execute again.
What can i do for set free 80 port? THX.
nginx 6593 root 6u IPv4 345904 0t0 TCP *:80 (LISTEN)
nginx 6605 systemd-network 6u IPv4 345904 0t0 TCP *:80 (LISTEN)
2
Answers
You should be able to simply
kill
the process.kill command syntax
So in your case,
You might need to be as root, so prepend with
sudo
as appropriatefor Linux:
or,