美文网首页
mongo笔记

mongo笔记

作者: lxc0522 | 来源:发表于2016-08-30 13:01 被阅读21次

    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):缩进格式要统一不能乱写;

    相关文章

      网友评论

          本文标题:mongo笔记

          本文链接:https://www.haomeiwen.com/subject/jtifettx.html