nodejs 端口号被占用



使用nodejs做了个服务器测试

var http=require("http"); http.createServer(function(request,response){response.writeHead(200,{'Content-Type':'text/plain'}); response.end('Hello World\n'); }).listen(8888); console.log('Server running at http://127.0.0.1:8888/');



出现如下错误
nodejs 端口号被占用
文章图片




原因:
Eaddrinuse地址使用错误本处,端口号被别的程序占用了
方法一:换一个端口号 比如8889
方法二:将占用这个端口的程序关掉
那么问题来了,怎么查看端口的占用情况,怎么知道哪个程序占用了这个端口呢? 使用如下方式:

C:\>netstat -aon|findstr "9050"TCP127.0.0.1:90500.0.0.0:0LISTENING2016


看到了吗,端口被进程号为2016的进程占用,继续执行下面命令:C:\>tasklist|findstr "2016"tor.exe2016 Console016,064 K


在本例中,我们查找8888端口


F:\node>netstat -aon|findstr "8888" TCP0.0.0.0:88880.0.0.0:0LISTENING2496F:\node>tasklist|findstr "2496" matlabserver.exe2496 Console013,648 K


然后将matlabserver.exe关掉,重新使用NODE 运行就可了。

【nodejs 端口号被占用】nodejs 端口号被占用
文章图片


    推荐阅读