2014-10-05 77 views
1

在Openshift上部署简单的MongoDB和Node.js应用程序时,出现503错误。 http://photoed-sking.rhcloud.com/MongoDB命令在OpenShift上被拒绝

MongoDB.log写着:

note: noprealloc may hurt performance in many applications 
Sat Oct 4 21:33:07.177 [initandlisten] MongoDB starting : pid=216116 port=27017 dbpath=/var/lib/openshift/54307ba35973caa3d100078c/mongodb/data/ 64-bit host=ex-std-node240.prod.rhcloud.com 
Sat Oct 4 21:33:07.194 [initandlisten] db version v2.4.9 
Sat Oct 4 21:33:07.194 [initandlisten] git version: nogitversion 
Sat Oct 4 21:33:07.194 [initandlisten] build info: Linux x86-025.build.eng.bos.redhat.com 2.6.32-431.5.1.el6.x86_64 #1 SMP Fri Jan 10 14:46:43 EST 2014 x86_64 BOOST_LIB_VERSION=1_41 
Sat Oct 4 21:33:07.194 [initandlisten] allocator: tcmalloc 
Sat Oct 4 21:33:07.195 [initandlisten] options: { auth: true, bind_ip: "127.13.135.2", command: [ "run" ], config: "/var/lib/openshift/54307ba35973caa3d100078c/mongodb//conf/mongodb.conf", dbpath: "/var/lib/openshift/54307ba35973caa3d100078c/mongodb/data/", nohttpinterface: "true", noprealloc: "true", pidfilepath: "/var/lib/openshift/54307ba35973caa3d100078c/mongodb/pid/mongodb.pid", quiet: "true", smallfiles: "true" } 
Sat Oct 4 21:33:07.301 [initandlisten] journal dir=/var/lib/openshift/54307ba35973caa3d100078c/mongodb/data/journal 
Sat Oct 4 21:33:07.301 [initandlisten] recover : no journal files present, no recovery needed 
Sat Oct 4 21:33:07.468 [initandlisten] waiting for connections on port 27017 
Sat Oct 4 21:33:08.621 [conn1] command denied: { replSetGetStatus: 1.0, forShell: 1.0 } 

这里是MongoDB的连接server.js文件的一部分。

https://github.com/steven-king/photoed-server/blob/master/server.js#L12-L28

在先进的感谢帮助我解决这个错误。

回答

0

连接字符串不工作的方式(由于某种原因)。我创造我的连接字符串这样的,它的工作原理:

https://github.com/thesteve0/fluentwebmap/blob/master/server.js

我认为你可以忽略线路18 & 19,但我没碰过在一段时间的代码。

行130 - 139告诉你如何进行身份验证。

+0

伟大的TheSteve。这工作。感谢您的帮助和链接。 – 2014-10-06 14:07:48

0

尝试运行mongod --repair,然后重新启动过程

+0

谢谢,db没有问题。我刚在服务器和数据库之间发生连接问题。 – 2014-10-05 21:56:58