我正在尝试将我的数据库导入我的mongoLab数据库,但它一直显示以下错误:
2016-10-19T21:05:49.183+0800 Failed: error connecting to db server: server returned error on SASL authentication step: Authentication failed.
-bash: vd: command not found
这就是我运行命令的方式:
mongorestore -h 243253423.mlab.com:2131242 -d meteor -u <Username> -p <Password> /Users/directory/desktop/mongo/dump
答案 0 :(得分:0)
我遇到了此错误消息,我不确定这是您的具体问题,但最终为我工作
mongorestore -d production-db \
-u myusername -p MyPassword \
--authenticationDatabase admin --host mydomain.com \
~/tmp/mongodump/local-production-db/
(务必检查防火墙sudo ufw status
和net.bindIp sudo nano /etc/mongod.conf
以确认您有权访问并且您的mongo进程正在侦听外部端口)