我正在尝试使用Mongoose将我的node.js表达应用程序连接到Heroku上的MongoLab数据库。我已使用app.configure
将我的数据库URI设置为production
上的MongoLab URI,正如您在Heroku日志中所看到的,它肯定会将dbURI
设置为MongoLab URI。我肯定已将NODE_ENV
设为production
。我的问题是什么?
app.js :
var express = require('express');
var mongoose = require('mongoose')
, dbURI = 'localhost';
var app = express();
app.configure('production', function () {
console.log("production!");
dbURI = 'mongodb://brad.ross.35:Brad1234@ds031347.mongolab.com:31347/heroku_app6861425';
console.log(dbURI);
});
mongoose.connect(dbURI, 'test');
mongoose.connection.on('error', console.error.bind(console, 'connection error:'));
var postSchema = new mongoose.Schema({
body: String
});
var Post = mongoose.model('Post', postSchema);
app.configure(function () {
//app.use(express.logger());
app.use(express.bodyParser());
app.use(express.static(__dirname + '/static'));
});
app.set('views', __dirname + '/views');
app.set('view engine','jade');
app.get('/', function(request, response) {
response.render('index');
});
app.post('/result', function(request, response) {
var post = new Post({body: request.body.text});
post.save(function (err) {
if (err) {
console.log("error!");
} else {
console.log("saved!");
}
});
Post.find(function (err, posts) {
if (!err) {
console.log("found!");
console.log(posts);
response.render('result', {posts: posts});
} else {
console.log("error!");
response.render('result', {posts: []});
}
});
});
app.get('/result', function (request, response) {
Post.find(function (err, posts) {
if (!err) {
console.log("found!");
console.log(posts);
response.render('result', {posts: posts});
} else {
console.log("error!");
response.render('result', {posts: []});
}
});
});
app.listen(process.env.PORT || 5000);
Heroku Logs :
2012-08-21T16:52:21+00:00 heroku[web.1]: State changed from crashed to starting
2012-08-21T16:52:22+00:00 heroku[slugc]: Slug compilation finished
2012-08-21T16:52:23+00:00 heroku[web.1]: Starting process with command `node app.js`
2012-08-21T16:52:24+00:00 app[web.1]: production!
2012-08-21T16:52:24+00:00 app[web.1]: mongodb://brad.ross.35:PASSWORD@ds031347.mongolab.com:31347/heroku_app6861425
2012-08-21T16:52:24+00:00 app[web.1]: connection error: [Error: failed to connect to [ds031347.mongolab.com:31347/heroku_app6861425:27017]]
2012-08-21T16:52:25+00:00 heroku[web.1]: State changed from starting to up
答案 0 :(得分:3)
传递URI时,无需单独传递数据库名称(这会混淆mongoose)。
只做
var uri = 'mongodb://brad.ross.35:Brad1234@ds031347.mongolab.com:31347/heroku_app6861425'
mongoose.connect(uri)
使用测试数据库,更改你的uri:
var uri = 'mongodb://brad.ross.35:Brad1234@ds031347.mongolab.com:31347/test'
答案 1 :(得分:0)
我没有使用Mongoose,但是当我过去遇到与MongoLab的连接问题时,这是由于连接到db和客户端代码而导致连接的竞争条件。
通常,解决方案是绑定到open
事件或提供在恢复需要连接的启动之前由底层驱动程序调用的回调。
这就是我对Mongoskin
所做的事情,我从来没有遇到过问题。
HTH 麦克