当我运行节点项目时,未指定端口。
> sf-chain@1.0.0 dev E:\System\dev\node\sf-chain
> nodemon ./app "HTTP_PORT=3002" "P2P_PORT=5002" "PEERS=ws://localhost:5001"
[nodemon] 1.18.3
[nodemon] to restart at any time, enter `rs`
[nodemon] watching: *.*
[nodemon] starting `node ./app HTTP_PORT=3002 P2P_PORT=5002 PEERS=ws://localhost:5001`
process.env.HTTP_PORT :: undefined
HTTP_PORT :: 3001
Listening for peer-to-peer connections on: 5001
events.js:160
throw er; // Unhandled 'error' event
^
Error: listen EADDRINUSE :::3001
at Object.exports._errnoException (util.js:1022:11)
at exports._exceptionWithHostPort (util.js:1045:20)
at Server._listen2 (net.js:1259:14)
at listen (net.js:1295:10)
at Server.listen (net.js:1391:5)
at EventEmitter.listen (E:\System\dev\node\sf-chain\node_modules\express\lib\application.js:618:24)
at Object.<anonymous> (E:\System\dev\node\sf-chain\app\index.js:28:5)
at Module._compile (module.js:570:32)
at Object.Module._extensions..js (module.js:579:10)
at Module.load (module.js:487:32)
[nodemon] app crashed - waiting for file changes before starting...
我使用来运行第一个实例
npm run dev
const HTTP_PORT = process.env.HTTP_PORT || 3001;
由于我未在run命令中指定HTTP_PORT,因此该应用程序已成功在端口3001上成功运行。 但是,当尝试通过使用以下命令指定HTTP_PORT来运行另一个实例时
npm run dev HTTP_PORT=3002 P2P_PORT=5002 PEERS=ws://localhost:5001
我收到此错误。
Error: listen EADDRINUSE :::3001
这意味着在运行时指定的HTTP_PORT被视为未定义,这就是为什么它尝试对第一个实例使用3001端口的原因。
答案 0 :(得分:0)
错误:监听EADDRINUSE -当该端口上已经在运行/侦听某物时出现错误
这是因为有时同一nodejs的实例获取端口并没有正确终止/退出进程,
如果您有Ubuntu,请先通过
检查哪个进程正在使用port。lsof -i :3001 // Port no.
然后输出将是这样的。
COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME
node 2496 nasiruddin 13u IPv6 37696 0t0 TCP *:3001 (LISTEN)
使用 PID
杀死kill 2496
然后重新开始