mongo常用命令操作笔记

1 链接

mongo 192.168.6.44:27017/test-u root-p 123456

登录所在服务器:mongo -port 20000

2 查看所有库

show dbs

3 查看所有表

show tables

4 运行js文件

load("/root/test.js")

5 导出json类型文件

mongoexport --host 127.0.0.1 --port 20000 -d 数据库名称 -c 表名称 -o /root/文件名.json

6 导入json类型文件到库中,如果没有表,则使用文件名做为表名称

mongoimport --host 127.0.0.1 --port 20000 -d 库名 --numInsertionWorkers 50 --file /root/文件名.json

7 删除表

db.tableName.drop()

8 备份库

mongodump  -h 127.0.0.1:20000 -d 库名称-o /root/

9 恢复备份

mongorestore -h 127.0.0.1:20000 -d atm_ep --dir /root/atm-ep/   --drop

你可能感兴趣的:(linux)