在Ubuntu 16.04上MongoDB没有授权错误

时间:2018-06-06 15:08:43

标签: node.js mongodb ubuntu-16.04

我在Digitalocean上安装服务器并遇到MongoDB问题。我在服务器上安装了Mongo并允许远程访问。

我创建了两个用户。一个是我的超级用户,另一个是网站用户的常规用户。 我可以通过Robomongo 3T(一个mongo客户端)为两个用户远程连接到mongo

但是,当我从浏览器使用该应用程序时,简单的登录请求会产生身份验证错误。这是错误:

MongoError: not authorized on DATABASE_NAME to execute command { find: "users", filter: { email: "YYY", password: "XXX" }, limit: 1,           singleBatch: true, batchSize: 1 }

这是经过验证的服务器端代码:

在server.js上连接数据库:

MongoClient.connect(config.mongo_url, (err, client) => {
    if(err) throw err
    console.log('db connected')
    app.locals.db = client
    // start the server
    app.listen(process.env.PORT || 3000, ()=>console.log('listening on port 3000!'))
});

尝试连接到服务器上的本地mongo:

database.collection(config.mongo_col_user)
.findOne({
    email: username,
    password: hash
}, (err, user)=>{
    if(err) return done(err)
    if(!user) return done(null, false, {msg: 'not found'})
    if(user.password)
    return done(null, user)
})

我在服务器端使用pm2,并使用ecosystem.config.js,其代码如下:

module.exports = {
    apps : [
        {
          name: "NAME",
          script: "SCRIPT_NAME",
          watch: true,
          env: {
            "mongo_url": 'mongodb://USER_NAME:PASSWORD@localhost:27017?authMechanism=SCRAM-SHA-1&authSource=DATABASE_NAME',
            "mongo_db_name": 'DATABASE_NAME',
            "mongo_col_query": "COLLECTION_NAME",
          }
        }
    ]
}

你能帮忙解决这个问题吗?

1 个答案:

答案 0 :(得分:0)

我已经弄清楚了。

当我对pm2环境文件ecosystem.config.js进行更改时,我总是使用pm2 restart all重新启动pm2。但是,当您更改文件时,应告诉pm2您已将其更改为pm2 reload ecosystem.config.js --update-env

此外,正确的语法是否

mongodb://USER_NAME:PASSWORD@localhost:27017?authMechanism=SCRAM-SHA-1&authSource=DATABASE_NAME'

mongodb://USER_NAME:PASSWORD@localhost:27017/DATABASE_NAME'