Tuesday, 2 February 2016

Windows Kill Process By Port Number

For windows

netstat -a -o -n                     list of process ids and port numbers

taskkill /F /PID 28344         Kill process (28344 is PID )

For ubuntu

ps -ef                 list of process ids and port numbers

kill -9 28344      Kill process (28344 is PID) 

No comments:

Post a Comment

Git merge branch to another branch

$ git checkout develop $ git pull $ git checkout test-branch $ git merge develop $ git push