我有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.
。所以我认为连接成功发生在主机服务器上。
任何人都可以告诉我为什么会这样。