我在Joyent云中使用本机mongo驱动程序,node.js应用程序在本地运行正常,但在Joyent中,当我使用usrname / pswd运行时,它们无法连接。 以下是用于连接的代码:
var db = new MongoDB(dbName, new Server('localhost', 27017 , {auto_reconnect: true}), {w: 1});
db.open(function(e, db){
if (e) {
console.log(e);
} else{
console.log('connected to database :: ' + dbName);
//db.admin().authenticate('admin', '+(uihghjk', function(de , db){
// if(e){
// console.log("could not authenticate");
// }else {
//console.log('connected to database :: ' + dbName);
// }
// });
}
});
有没有人在Joyent中使用过本地node.js驱动程序。
由于
答案 0 :(得分:8)
如果您只使用MongoClient,则更容易
MongoClient.connect('mongodb://admin:password@localhost:27017/db', function (err, db) {
答案 1 :(得分:0)
标准URI连接方案为:
mongodb://[username:password@]host1[:port1][,host2[:port2],...[,hostN[:portN]]][/[database][?options]]
例如:
mongodb://admin:pass@abc.com/
参考:https://docs.mongodb.com/manual/reference/connection-string/
答案 2 :(得分:0)
工作代码如下
const MongoClient = require('mongodb').MongoClient;
const uri = "mongodb+srv://<username>:<password>@cluster0-saugt.mongodb.net/test?retryWrites=true&w=majority";
const client = new MongoClient(uri, { useNewUrlParser: true });
client.connect(err => {
// creating collection
const collection = client.db("test").collection("devices");
// perform actions on the collection object
client.close();
});