linux process kill code example
Example 1: kill process cmd
netstat -ano | findstr :3000
taskkill /PID "123" /F
Example 2: how to kill running process in linux
ps ux # list the running Process with PID
kill xxxx # hear xxxx is the process id
netstat -ano | findstr :3000
taskkill /PID "123" /F
ps ux # list the running Process with PID
kill xxxx # hear xxxx is the process id