If you know a process running on a specific port and need to kill the process ?
here are the steps.
1) Find the process ID. (Here which runs on 9443)
1
2
3
4
5
| fuser -n tcp 9443 or lsof -w -n -i tcp:9443 |
Then you have the process ID. Kill the process with (Here ID = 6147)
1
| kill - 9 6147 |
By taking the time to read a lot of information like this to add my insight . cara menggugurkan kandungan dengan selamat
ReplyDelete