0

我正在尝试连接到 mongodb。我以前做过。但是在一段时间没有使用 c9 之后,我假设我的数据库服务器已关闭。结果,我不得不按照 c9 网站上提供的说明进行操作:link1link2

谁能向我解释为什么我会收到这个错误。谢谢

roadtocode2:~/workspace $ ./mongod
2017-07-09T15:02:38.483+0000 ** WARNING: --rest is specified without --httpinterface,
2017-07-09T15:02:38.483+0000 **          enabling http interface
warning: bind_ip of 0.0.0.0 is unnecessary; listens on all ips by default
2017-07-09T15:02:38.485+0000 [initandlisten] MongoDB starting : pid=4054 port=27017 dbpath=data 64-bit host=roadtocode2-node-crud-traversy-4943954
2017-07-09T15:02:38.485+0000 [initandlisten] db version v2.6.12
2017-07-09T15:02:38.485+0000 [initandlisten] git version: d73c92b1c85703828b55c2916a5dd4ad46535f6a
2017-07-09T15:02:38.485+0000 [initandlisten] build info: Linux build5.ny.cbi.10gen.cc 2.6.32-431.3.1.el6.x86_64 #1 SMP Fri Jan 3 21:39:27 UTC 2014 x86_64 BOOST_LIB_VERSION=1_49
2017-07-09T15:02:38.485+0000 [initandlisten] allocator: tcmalloc
2017-07-09T15:02:38.485+0000 [initandlisten] options: { net: { bindIp: "0.0.0.0", http: { RESTInterfaceEnabled: true, enabled: true } }, storage: { dbPath: "data", journal: { enabled: false } } }
************** 
Unclean shutdown detected.
Please visit http://dochub.mongodb.org/core/repair for recovery instructions.
*************
2017-07-09T15:02:38.485+0000 [initandlisten] exception in initAndListen: 12596 old lock file, terminating
2017-07-09T15:02:38.485+0000 [initandlisten] dbexit: 
2017-07-09T15:02:38.485+0000 [initandlisten] shutdown: going to close listening sockets...
2017-07-09T15:02:38.485+0000 [initandlisten] shutdown: going to flush diaglog...
2017-07-09T15:02:38.485+0000 [initandlisten] shutdown: going to close sockets...
2017-07-09T15:02:38.486+0000 [initandlisten] shutdown: waiting for fs preallocator...
2017-07-09T15:02:38.486+0000 [initandlisten] shutdown: closing all files...
2017-07-09T15:02:38.486+0000 [initandlisten] closeAllFiles() finished
2017-07-09T15:02:38.486+0000 [initandlisten] dbexit: really exiting now
roadtocode2:~/workspace $ sudo apt-get install -y mongodb-org

Reading package lists... Done
Building dependency tree       
Reading state information... Done
mongodb-org is already the newest version.
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
roadtocode2:~/workspace $ 
roadtocode2:~/workspace $ mongod --bind_ip=$IP --nojournal
warning: bind_ip of 0.0.0.0 is unnecessary; listens on all ips by default
2017-07-09T15:02:58.664+0000 [initandlisten] MongoDB starting : pid=4074 port=27017 dbpath=/data/db 64-bit host=roadtocode2-node-crud-traversy-4943954
2017-07-09T15:02:58.664+0000 [initandlisten] db version v2.6.12
2017-07-09T15:02:58.664+0000 [initandlisten] git version: d73c92b1c85703828b55c2916a5dd4ad46535f6a
2017-07-09T15:02:58.664+0000 [initandlisten] build info: Linux build5.ny.cbi.10gen.cc 2.6.32-431.3.1.el6.x86_64 #1 SMP Fri Jan 3 21:39:27 UTC 2014 x86_64 BOOST_LIB_VERSION=1_49
2017-07-09T15:02:58.664+0000 [initandlisten] allocator: tcmalloc
2017-07-09T15:02:58.664+0000 [initandlisten] options: { net: { bindIp: "0.0.0.0" }, storage: { journal: { enabled: false } } }
************** 
Unclean shutdown detected.
Please visit http://dochub.mongodb.org/core/repair for recovery instructions.
*************
2017-07-09T15:02:58.664+0000 [initandlisten] exception in initAndListen: 12596 old lock file, terminating
2017-07-09T15:02:58.664+0000 [initandlisten] dbexit: 
2017-07-09T15:02:58.664+0000 [initandlisten] shutdown: going to close listening sockets...
2017-07-09T15:02:58.664+0000 [initandlisten] shutdown: going to flush diaglog...
2017-07-09T15:02:58.664+0000 [initandlisten] shutdown: going to close sockets...
2017-07-09T15:02:58.664+0000 [initandlisten] shutdown: waiting for fs preallocator...
2017-07-09T15:02:58.665+0000 [initandlisten] shutdown: closing all files...
2017-07-09T15:02:58.665+0000 [initandlisten] closeAllFiles() finished
2017-07-09T15:02:58.665+0000 [initandlisten] dbexit: really exiting now
4

1 回答 1

1

这很可能是由于工作空间因不活动而被 Cloud9 自动归档和关闭。日志似乎指向不干净的关机;我建议按照 MongoDB 提供的步骤来恢复您的数据库...看起来此时的过程是备份您的数据库并运行修复命令:https ://docs.mongodb.com/manual/tutorial/恢复数据跟随意外关闭/

于 2017-07-12T22:11:24.483 回答