Possible Duplicate:
Finding the process that is using a certain port in Linux
I'm using Ubuntu Linux 11.04. How do I write a shell script expression that will find the process running on port 4444 and then kill the process?
I'm using Ubuntu Linux 11.04. How do I write a shell script expression that will find the process running on port 4444 and then kill the process? |
||||
|
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
You could use
would list only the pid of the process listening on port 4444. You could just say
if you were brave. |
|||||
|
|
You use
The output will be something like:
Where the first column is the process name, and the second column is the process id. You then parse the output, find out what the process id (PID) is and use |
|||
|
|
Alternatively you could use |
|||
|
|
Uses netstat to list listening INET sockets with numeric ports and parent processes. Filters for string 4444, takes out the 7th column( pid/process name ) and further splits it by "/" to get the pid. Passes that to kill command. |
|||||
|