我试图在本地环境中运行firebase cloud functions
模拟器,但遇到了EADDRINUSE
问题。
- 我可以成功运行firebase模拟器:
✔ functions[main]: http function initialized (http://localhost:5001/firebaseapp/main).
┌───────────────────────────────────────────────────────────────────────┐
│ ✔ All emulators ready! View status and logs at http://localhost:4000 │
└───────────────────────────────────────────────────────────────────────┘
┌───────────┬────────────────┬─────────────────────────────────┐
│ Emulator │ Host:Port │ View in Emulator UI │
├───────────┼────────────────┼─────────────────────────────────┤
│ Functions │ localhost:5001 │ http://localhost:4000/functions │
└───────────┴────────────────┴─────────────────────────────────┘
Other reserved ports: 4400, 4500
Issues? Report them at https://github.com/firebase/firebase-tools/issues and attach the *-debug.log files.
> Server Started
> Connected to MongoDB
- 然而,在那之后,当我使用模拟器提供的链接时,事情并没有按预期进行:
http://localhost:5001/firebaseapp/main
提出我的测试请求:
http://localhost:5001/firebaseapp/main/test
我得到以下错误:
> events.js:288
> throw er; // Unhandled 'error' event
> ^
>
> Error: listen EADDRINUSE: address already in use :::5000
> at Server.setupListenHandle [as _listen2] (net.js:1309:16)
> at listenInCluster (net.js:1357:12)
> at Server.listen (net.js:1445:7)
> at Function.listen (/Users/Desktop/fb_tour/functions/node_modules/express/lib/application.js:618:24)
> at Object.<anonymous> (/Users/Desktop/fb_tour/functions/index.js:61:5)
> at Module._compile (internal/modules/cjs/loader.js:1158:30)
> at Object.Module._extensions..js (internal/modules/cjs/loader.js:1178:10)
> at Module.load (internal/modules/cjs/loader.js:1002:32)
> at Function.Module._load (internal/modules/cjs/loader.js:901:14)
> at Module.require (internal/modules/cjs/loader.js:1044:19)
> at require (internal/modules/cjs/helpers.js:77:18)
> at /usr/local/lib/node_modules/firebase-tools/lib/emulator/functionsEmulatorRuntime.js:681:33
> at Generator.next (<anonymous>)
> at fulfilled (/usr/local/lib/node_modules/firebase-tools/lib/emulator/functionsEmulatorRuntime.js:5:58)
> at processTicksAndRejections (internal/process/task_queues.js:97:5)
> Emitted 'error' event on Server instance at:
> at emitErrorNT (net.js:1336:8)
> at processTicksAndRejections (internal/process/task_queues.js:84:21) {
> code: 'EADDRINUSE',
> errno: 'EADDRINUSE',
> syscall: 'listen',
> address: '::',
> port: 5000
> }
我试图杀死端口5000,但显然没有活动的PID进程,所以我无法获得PID。我还重新启动了我的计算机,迫使每个进程关闭,但这个错误仍然存在。
有什么建议吗?
编辑:即使我更改了nodejs应用程序中的侦听端口,我也遇到了同样的问题。例如,当我设置端口3000时,我会收到相同的错误消息,告诉我端口3000已经在使用中。
编辑2:我想我已经确定了问题的原因。当我运行函数模拟器时,我收到了这个警告消息
It seems that you are running multiple instances of the emulator suite for project firebaseapp. This may result in unexpected behavior.
我认为我的应用程序同时运行了两个实例,导致了这个错误。然而,我不知道如何解决这个问题。
如果函数代码中有app.listen()
,那么删除它,一切都会正常工作。
对于您提供的最后一次更新,github上报告了错误消息。我认为您可以按照那里的建议来避免这个问题。
在使用模拟器之前,您似乎只需要使用CTRL-C命令。根据这个链接,问题已经得到解决。