总结一下超级用户相关的命令。
1. #进入数据库admin
use admin
2. #增加用户
db.addUser(‘name’,’pwd’)
3. #查看用户列表
db.system.users.find()
4. #查看所有用户
show users
5. #删除用户
db.removeUser(‘name’)
6. #用户认证
db.auth(‘name’,’pwd’)
7. #查看所有的collection
show collections
8. #查看各collection的状态
db.printCollectionStats()
9. #删除collection
db.mail_addr.drop()
10. #查看所有数据库
show dbs
11. #拷贝数据库
db.copyDatabase(‘mail_addr’,’mail_addr_tmp’)
12. #删除当前的数据库
db.dropDatabase()
13. #修复数据库
db.repairDatabase()
14. #设置记录profiling,0=off 1=slow 2=all
db.setProfilingLevel(1)
15. #查看profiling
show profile
16. #查看主从复制状态
db.printReplicationInfo()
Post a comment now »
本文目前不可评论
Sorry, the comment form is closed at this time.
No comments yet.