Horje
How to kill a port Code Example
kill app at port
#To list any process listening to the port 8080:
lsof -i:8080

#To kill any process listening to the port 8080:
kill $(lsof -t -i:8080)

#or more violently:
kill -9 $(lsof -t -i:8080)
kill port
sudo kill -9 `sudo lsof -t -i:9001`
kill port
npx kill-port 3000
kill port linux
kill -9 $(lsof -t -i:8080)
How to kill a port
npx kill-port 8080
kill a port
kill $(lsof -ti:3000) 




Shell

Related
how to install docker ubuntu Code Example how to install docker ubuntu Code Example
error: command 'x86_64-linux-gnu-gcc' failed with exit status 1 Code Example error: command 'x86_64-linux-gnu-gcc' failed with exit status 1 Code Example
upgrade ubuntu 16.04 to 20.04 Code Example upgrade ubuntu 16.04 to 20.04 Code Example
vim ubuntu install Code Example vim ubuntu install Code Example
crop video from specific time to specific time ffmpeg Code Example crop video from specific time to specific time ffmpeg Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
13