节点/快递:EADDRINUSE,地址已在使用 - 杀死服务器 [英] Node / Express: EADDRINUSE, Address already in use - Kill server

查看:34
本文介绍了节点/快递:EADDRINUSE,地址已在使用 - 杀死服务器的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个使用 connect 在 node.js 中运行的简单服务器:

I have a simple server running in node.js using connect:

var server = require('connect').createServer();
//actions...
server.listen(3000);

在我的代码中,我有实际的处理程序,但这是基本思想.我一直遇到的问题是

In my code I have actual handlers, but thats the basic idea. The problem I keep getting is

EADDRINUSE, Address already in use

我的应用程序在之前崩溃或出错后再次运行时收到此错误.由于我没有打开终端的新实例,因此我使用 ctr + z 关闭了进程.

I receive this error when running my application again after it previously crashed or errors. Since I am not opening a new instance of terminal I close out the process with ctr + z.

我相当肯定我所要做的就是关闭服务器或连接.我尝试在 process.on('exit', ...); 中调用 server.close() ,但没有成功.

I am fairly certain all I have to do is close out the server or connection. I tried calling server.close() in process.on('exit', ...); with no luck.

推荐答案

我找到了这个解决方案,试试看授予使用权限 sudo

I found this solution, try it Give permission use sudo

  sudo pkill node

这篇关于节点/快递:EADDRINUSE,地址已在使用 - 杀死服务器的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆