Skip to content

Latest commit

 

History

History
22 lines (16 loc) · 304 Bytes

File metadata and controls

22 lines (16 loc) · 304 Bytes

port

kill process at port

  • linux
# get the port and process id
ss -tpuln | grep -i -e '[port|listen]'

# kill it
kill -9 <pid>
  • windows
# find the process id (last column of output will be process id)
netstat -o | findstr "<port>"

# kill it
taskkill /PID <process id> /F