error connecting to db server: no reachable servers

在使用 mongodb 的导出工具导出数据时,工具报错:

[mongodb]# ./bin/mongoexport -d cloud-db -c collection1 -o exportfile/collection1.dat
2018-07-27T10:15:49.066+0800    error connecting to db server: no reachable servers

使用 ./bin/mongoexport --help 命令一查帮助,发现有很多参数要填的,自己一琢磨,将端口号加上后就可以了。

# ./bin/mongoexport --port 123456 -d cloud-db -c collection1 -o exportfile/collection1.dat

如果数据库有设置密码,还得加上用户名和密码等相关参数。

猜你喜欢

转载自blog.csdn.net/kuloujianzun/article/details/81232985
今日推荐