Node,Mongoose连接到IBM Bluemix Compose for Mongodb

时间:2017-01-28 16:12:10

标签: node.js mongodb ibm-cloud compose

你如何使用Mongoose:https://github.com/Automattic/mongoose

这里的例子:https://github.com/IBM-Bluemix/compose-mongodb-helloworld-nodejs效果很好。 以下是示例mongo代码的简化代码段:

MongoClient.connect(credentials.uri, { // step 1: connect
    mongos: {...},
    function(err, db) {
        if (err) {
            console.log(err);
        } else {
            mongodb = db.db("examples"); // step 2: create or use database
        }
    }
);

我找不到使用两步连接过程的猫鼬示例。

我注意到Compose for Mongodb不支持直接连接到现有示例数据库。 连接到此网址:

mongodb://admin:PW@bluemix...4.dblayer.com:22601,bluemix...0.dblayer.com:22601/examples'

导致MongoError:身份验证失败'

2 个答案:

答案 0 :(得分:1)

以下是使用Compose for MongoDB和Mongoose的示例的摘录:

var mongoDbUrl, mongoDbOptions = {};
var mongoDbCredentials = appEnv.getServiceCreds("mycomposedb").credentials;
var ca = [new Buffer(mongoDbCredentials.ca_certificate_base64, 'base64')];
mongoDbUrl = mongoDbCredentials.uri;
mongoDbOptions = {
  mongos: {
    ssl: true,
    sslValidate: true,
    sslCA: ca,
    poolSize: 1,
    reconnectTries: 1
  }
};
console.log("Connecting to", mongoDbUrl);
mongoose.connect(mongoDbUrl, mongoDbOptions); // connect to our database

然后您可以使用useDb切换数据库。

The full source code is here

答案 1 :(得分:1)

Frederic的代码片段(使用Mongo驱动程序)和他链接的源代码(连接到admin db)都不允许使用 mongoose 连接到自定义MongoDB。

要使用 mongoose IBM Compose连接到自定义数据库,您必须提供与Compose提供的默认连接字符串不同的连接字符串。

以下连接字符串模板有效:

var connectionUrl = 'mongodb://<username>:<password>@<hostname>:<port>,<hostname-n>:<port-n>/<db-name>?ssl=true&authSource=admin';

使用以下选项:

var sslCA = [fs.readFileSync('mongo.cert')];
var options = {
  ssl: true,
  sslValidate: true,
  sslCA,
};

我在the complete working example

上提供了Github