Mongo的常见使用命令

账号密码登录

./mongo --host 127.0.0.1 --port 27017 -u "账号" -p "密码" --authenticationDatabase "admin"

显示当前数据库信息

> show dbs

切换到数据库并检查数据库中可用的集合

>use db名称

>show collections

备份集合

备份的目录在bin/dump/ 中

./mongodump  --host 127.0.0.1 --port 27017 -u "账号" -p "密码" --authenticationDatabase "admin"

 

数据恢复

./mongorestore

删除集合

>db.mycollection.drop()

如果选定的集合成功删除,drop()方法将返回true,否则返回false
true

查询集合中的数据

>db.mycol.find({})

删除所有文档记录

>db.mycol.remove()

清空集合下的数据

(drop命令会把索引也删掉,某些时候只想清空数据,索引要保留.所以使用下面的方式清空)
>use db名称
<'switched to db xxx'
>db.集合名称.deleteMany({})
<{ acknowledged: true, deletedCount: 24 }

退出mongo

>exit

 

posted @ 2022-04-11 11:48  ni当像鸟飞往你的山  阅读(127)  评论(0编辑  收藏  举报