Horje
kill :80 port Code Example
kill process on 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 linux
kill -9 $(lsof -t -i:8080)
kill port
kill -9 $(sudo lsof -t -i:8080)
kill port
npx kill-port 8080
kill :80 port
sudo lsof -t -i tcp:80 | sudo xargs kill




Shell

Related
ubuntu gpg 2 Code Example ubuntu gpg 2 Code Example
code blocks download for debian Code Example code blocks download for debian Code Example
ln phpmyadmin Code Example ln phpmyadmin Code Example
xampp the installer requires root privileges Code Example xampp the installer requires root privileges Code Example
colab unzip tar.gz Code Example colab unzip tar.gz Code Example

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