我正在为我的应用程序使用node.js和MongoDB。每当我使用localhost时,我都没有问题,应用程序运行正常。但是,在服务器上,数据库限制我50个连接。这是日志的一个例子:
Wed Jul 27 13:33:29 [initandlisten] waiting for connections on port 27017
Wed Jul 27 13:33:29 [websvr] web admin interface listening on port 28017
Wed Jul 27 13:34:50 [initandlisten] connection accepted from 127.0.0.1:42035 #1
Wed Jul 27 13:35:16 [initandlisten] connection accepted from 127.0.0.1:42181 #2
Wed Jul 27 13:35:16 [initandlisten] connection accepted from 127.0.0.1:42182 #3
Wed Jul 27 13:35:25 [initandlisten] connection accepted from 127.0.0.1:42249 #4
...
Wed Jul 27 13:36:09 [initandlisten] connection accepted from 127.0.0.1:42518 #50
Wed Jul 27 13:36:10 [initandlisten] connection accepted from 127.0.0.1:42524 #51
Wed Jul 27 13:36:10 [initandlisten] can't create new thread, closing connection
我正在使用命令mongod --maxConns=5000
启动该过程。有谁知道可能导致此连接限制的原因是什么?
答案 0 :(得分:3)
您可以发布用于连接的代码吗?如果您在每个请求上连接到数据库,那么您将很快耗尽连接。在大多数情况下,最好在请求之间共享数据库连接,例如通过连接应用启动。