2
我有mongodb在標準的AWS Ubuntu 14.04服務器上運行。經過一些看似無關的服務器管理(升級,安裝python virtualenv等),我在MongoDB上遇到了一些麻煩。在我解決了一個問題(類似於這個問題)之後,我現在得到了下一個問題。Mongodb連接不斷結束
當我啓動服務器(sudo service mongodb restart
)我得到以下日誌:
Wed Dec 23 15:15:14.571 [initandlisten] MongoDB starting : pid=21554 port=27017 dbpath=/var/lib/mongodb 64-bit host=ip-172-31-29-10
Wed Dec 23 15:15:14.571 [initandlisten] db version v2.4.9
Wed Dec 23 15:15:14.571 [initandlisten] git version: nogitversion
Wed Dec 23 15:15:14.571 [initandlisten] build info: Linux orlo 3.2.0-58-generiC#88-Ubuntu SMP Tue Dec 3 17:37:58 UTC 2013 x86_64 BOOST_LIB_VERSION=1_54
Wed Dec 23 15:15:14.571 [initandlisten] allocator: tcmalloc
Wed Dec 23 15:15:14.571 [initandlisten] options: { bind_ip: "127.0.0.1", config: "/etc/mongodb.conf", dbpath: "/var/lib/mongodb", journal: "true", logappend: "true", logpath: "/var/log/mongodb/mongodb.log" }
Wed Dec 23 15:15:14.575 [initandlisten] journal dir=/var/lib/mongodb/journal
Wed Dec 23 15:15:14.575 [initandlisten] recover : no journal files present, no recovery needed
Wed Dec 23 15:15:14.593 [initandlisten] waiting for connections on port 27017
Wed Dec 23 15:15:14.593 [websvr] admin web console waiting for connections on port 28017
Wed Dec 23 15:15:15.337 [initandlisten] connection accepted from 127.0.0.1:45356 #1 (1 connection now open)
Wed Dec 23 15:15:15.850 [conn1] end connection 127.0.0.1:45356 (0 connections now open)
Wed Dec 23 15:15:16.191 [initandlisten] connection accepted from 127.0.0.1:45360 #2 (1 connection now open)
Wed Dec 23 15:15:16.788 [conn2] end connection 127.0.0.1:45360 (0 connections now open)
Wed Dec 23 15:15:17.130 [initandlisten] connection accepted from 127.0.0.1:45364 #3 (1 connection now open)
Wed Dec 23 15:15:18.108 [conn3] end connection 127.0.0.1:45364 (0 connections now open)
Wed Dec 23 15:15:18.439 [initandlisten] connection accepted from 127.0.0.1:45368 #4 (1 connection now open)
Wed Dec 23 15:15:18.934 [conn4] end connection 127.0.0.1:45368 (0 connections now open)
etc.
etc.
正如你可以看到它不斷地打開和關閉連接,我不知道爲什麼。我搜索了一個答案,但我似乎無法找到任何相關的東西。
有誰知道這裏有什麼麻煩?!雖然它不是生產服務器,但人們確實需要在一段時間內使用它。歡迎所有提示!