powershell 在端口上杀死节点服务器

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了powershell 在端口上杀死节点服务器相关的知识,希望对你有一定的参考价值。

// on windows
// kill all instances of node
taskkill /f /im node.exe

//////////////////////////

// list all the processes on port 3000
netstat -ano | find "LISTENING" | find "3000"

// kill process 14828
taskkill /f /pid 14828

以上是关于powershell 在端口上杀死节点服务器的主要内容,如果未能解决你的问题,请参考以下文章