Windows中备份
C:\Program Files\MongoDB\Server\3.6\bin> -d local
Linux中恢复
mongorestore -d local --drop dump/local/
CentOS7中远程访问的配置跟6略有不同
vi /etc/
将bindIp: 127.0.0.1改为bindIp: 0.0.0.0;网上很多攻略说是bind_ip,不过这都不是问题
修改完毕后重启mongodb的服务
systemctl restart mongod
启动:systemctl start mongod
关闭 systemctl stop mongod
ps:使用命令行的方式操作起来比较麻烦,也可以采用图形化界面工具如studio 3t进行操作