MongoDB copydatabase错误代码18身份验证失败

时间:2017-11-20 15:47:36

标签: mongodb

我有MongoDB Server,我正在尝试将数据从一台服务器迁移到另一台服务器,我的主机服务器port 27017已打开,但当我尝试使用下面的命令时,我得到了以下响应。

> db.auth("example", "***********")
1
> db.copyDatabase('exampledb', 'exampledb', "15.128.223.33:27017", "username", "password");
 {
    "ok" : 0,
    "errmsg" : "Authentication failed.",
    "code" : 18,
    "codeName" : "AuthenticationFailed"
}

此外,当我打开此网址15.128.223.33:27017时,我正在回复It looks like you are trying to access MongoDB over HTTP on the native driver port.。所以我认为连接成功发生在主机服务器上。

任何人都可以告诉我为什么会这样。

0 个答案:

没有答案