命令行连接集群及使用用户验证:
mongo --host replA/ip1:27017,ip2:27017,ip3:27017 -u username -p --authenticationDatabase 库名
查询表
show collections;
删除表中所有数据
db.collection.remove({})
命令行连接集群及使用用户验证:
mongo --host replA/ip1:27017,ip2:27017,ip3:27017 -u username -p --authenticationDatabase 库名
查询表
show collections;
删除表中所有数据
db.collection.remove({})