1:基本操作
use admin
db.createUser({user:"lxc",pwd:"123456",roles:['root']})
修改密码
db.changeUserPassword("username","newpassword")
查看用户信息
db.runCommand({userInfo:"kangw"})
验证用户
db.auth("username","pwd")
创建索引 db.users.ensureIndex({name:1}) db.users.ensureIndex( { "user_id" : 1, "person" : 1 } );
删除索引 db.users.dropIndexes("user_id")
插入记录 db.users.insert({a:1, b:1})
条件查询 db.users.find({'age':{gt:33,gt:33,lte:40}})
获取表记录数 Db.users.count()
删除记录 db.users.remove({z:'abc'}) 清空表 db.users.remove({})
删除表 db.users.drop()
创建表 db.createCollection("email_content");
显示表 show collections
导出数据库 mongorestore -h 127.0.0.1 -d mongotest -u mongotest -p mongotest1qaz --dir /home/www/mongorestore-2017-04-06/mongotest
导入数据库 mongorestore -h 127.0.0.1 -d mongotest -u mongotest-p mongotest1qaz --dir /home/www/mongorestore-2017-04-06/mongotest
2:数据库配置主要事项:
1):缩进格式要统一不能乱写;