DEV Community

Cover image for How to Kill a Local Host in Linux
Rabeeh Ebrahim
Rabeeh Ebrahim

Posted on

2 2

How to Kill a Local Host in Linux

Sometimes when you try to run a port through terminal, you may end up getting errors like 'address already in use'.

I get this even when I disconnect the host. Although it happens sometimes only. Follow this steps to Kill the local Host.

Step 1:
Open Your Linux Terminal

Step 2:
Types this command below.
sudo lsof -iTCP:3000 -sTCP:LISTEN
Please note that: type your port address instead of 3000

Step 3:
You get an output similar to this.

COMMAND   PID   USER   FD   TYPE DEVICE SIZE/OFF NODE NAME
node    25215  user    20u  IPv6 240148      0t0  TCP *:hbci (LISTEN)
Enter fullscreen mode Exit fullscreen mode

note that PID

Step 4:
type kill 25215

Voila, you killed it :)

Top comments (0)

Billboard image

The Next Generation Developer Platform

Coherence is the first Platform-as-a-Service you can control. Unlike "black-box" platforms that are opinionated about the infra you can deploy, Coherence is powered by CNC, the open-source IaC framework, which offers limitless customization.

Learn more

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay