Linux/Ubuntu Commands To Kill Background Running Application Port
1) List all
sudo lsof -t -i
2)Search port which is used in application
sudo netsat -lpn |grep :9500
3)Search id with exact port
sudo lsof -t -i:9500
4)List of id will be displayed to kill use below command
kill 6230
To List and kill all java
Use the command
sudo netstat -plten |grep java
used grep java
as tomcat
uses java
as their processes.
It will show the list of processes with port number and process id
tcp6 0 0 :::8080 :::* LISTEN
1000 30070621 16085/java
the number before /java
is a process id. Now use kill
command to kill the process
kill -9 16085
-9
implies the process will be killed forcefully.