MongoDB常用操作

来源:互联网 发布:android kernel 源码 编辑:程序博客网 时间:2024/05/22 05:21

MongoDB常用操作


    首先,我们启动mongoDB:

[root@h3 /]# mongod -f /etc/mongod.confWed Jul 24 23:38:58.195Wed Jul 24 23:38:58.195 warning: 32-bit servers don't have journaling enabled by default. Please use --journal if you want durability.Wed Jul 24 23:38:58.195about to fork child process, waiting until server is ready for connections.forked process: 14093all output going to: /var/log/mongo/mongod.logchild process started successfully, parent exiting[root@h3 /]#

然后,我们进入mongo  shell:

[root@h3 /]# mongoMongoDB shell version: 2.4.5connecting to: testServer has startup warnings:Wed Jul 24 23:38:58.244 [initandlisten]Wed Jul 24 23:38:58.244 [initandlisten] ** NOTE: This is a 32 bit MongoDB binary.Wed Jul 24 23:38:58.244 [initandlisten] **       32 bit builds are limited to less than 2GB of data (or less with --journal).Wed Jul 24 23:38:58.244 [initandlisten] **       Note that journaling defaults to off for 32 bit and is currently off.Wed Jul 24 23:38:58.244 [initandlisten] **       See http://dochub.mongodb.org/core/32bitWed Jul 24 23:38:58.244 [initandlisten]>
在这里,简述以下mongo的shell有哪些功能:

1,具有功能完备的javascript解释器;

2,可以完成任何javascript命令;

3,可以完成mongoDB操作管理命令,这些命令带有强烈javascript风格。


例如,我们在shell中执行javascript 操作:

> var x = 100;> x / 333.333333333333336> x + 20120> x -4060>

来点更强大的:

> Math.sin(Math.PI / 2)1> function fac(n){... if (n <= 1){...   return 1;... }... return n * fac(n - 1);... }> fac(5);120>

在MongoDB中切换数据库:

> use foobarswitched to db foobar> use xyzswitched to db xyz> dbxyz>


在MongoDB中新增记录。

在插入记录时,MongoDB会检查文档是否包含_id,如果文档没有包含_id,MongoDB会为其创建。

> use blogswitched to db blog> post = {'title' : 'My Blog Post', 'content': 'Here is my blog post.', 'date':new Date()}{        "title" : "My Blog Post",        "content" : "Here is my blog post.",        "date" : ISODate("2013-07-24T17:15:29.168Z")}> db.blog.insert(post)> db.blog.find(){ "_id" : ObjectId("51f00bbecd26ce7df43a2e86"), "title" : "My Blog Post", "content" : "Here is my blog post.", "date" : ISODate("2013-07-24T17:15:29.168Z") }>

在这里,小述一下: "_id" 为系统默认增加的字段,用于唯一标示文档,类似于oracle中的rowid,ObjectId是Id的缺省产生办法,由12个字节(24个16进制数字)组成,第0-3字节为时间戳,第4-6字节为机器标示(一般是主机名的散列值),第7-8字节为pid,9-11字节为计数器。


读取数据:

> db.blog.findOne(){        "_id" : ObjectId("51f00bbecd26ce7df43a2e86"),        "title" : "My Blog Post",        "content" : "Here is my blog post.",        "date" : ISODate("2013-07-24T17:15:29.168Z")}>

修改数据:

> post.comments = [][ ]> db.blog.update({title : 'My Blog Post'}, post)> db.blog.find(){ "_id" : ObjectId("51f00bbecd26ce7df43a2e86"), "title" : "My Blog Post", "content" : "Here is my blog post.", "date" : ISODate("2013-07-24T17:15:29.168Z"), "comments" : [ ] }>

删除数据:

> db.blog.remove({title : 'My Blog Post'})> db.blog.find()>

寻求帮助:

> help        db.help()                    help on db methods        db.mycoll.help()             help on collection methods        sh.help()                    sharding helpers        rs.help()                    replica set helpers        help admin                   administrative help        help connect                 connecting to a db help        help keys                    key shortcuts        help misc                    misc things to know        help mr                      mapreduce        show dbs                     show database names        show collections             show collections in current database        show users                   show users in current database        show profile                 show most recent system.profile entries with time >= 1ms        show logs                    show the accessible logger names        show log [name]              prints out the last segment of log in memory, 'global' is default        use <db_name>                set current database        db.foo.find()                list objects in collection foo        db.foo.find( { a : 1 } )     list objects in foo where a == 1        it                           result of the last line evaluated; use to further iterate        DBQuery.shellBatchSize = x   set default number of items to display on shell        exit                         quit the mongo shell>


查看函数源码:

> db.blog.insertfunction ( obj , options, _allow_dot ){    if ( ! obj )        throw "no object passed to insert!";    if ( ! _allow_dot ) {        this._validateForStorage( obj );    }    if ( typeof( options ) == "undefined" ) options = 0;    if ( typeof( obj._id ) == "undefined" && ! Array.isArray( obj ) ){        var tmp = obj; // don't want to modify input        obj = {_id: new ObjectId()};        for (var key in tmp){            obj[key] = tmp[key];        }    }    var startTime = (typeof(_verboseShell) === 'undefined' ||                     !_verboseShell) ? 0 : new Date().getTime();    this._mongo.insert( this._fullName , obj, options );    this._lastID = obj._id;    this._printExtraInfo("Inserted", startTime);}>


MongoDB在非正常关闭后,启动会出现以下错误:

[root@h3 ~]# mongod -f /etc/mongod.confWed Jul 24 23:25:10.802Wed Jul 24 23:25:10.802 warning: 32-bit servers don't have journaling enabled by default. Please use --journal if you want durability.Wed Jul 24 23:25:10.802about to fork child process, waiting until server is ready for connections.forked process: 14043all output going to: /var/log/mongo/mongod.logERROR: child process failed, exited with error number 100[root@h3 ~]#
其原因是,MongoDB被锁定,在mongo的path目录下(本人的目录为/var/lib/mongo/)将mongod.lock删除,然后运行命令: mongod -repair  修复mongoDB,然后再启动。

PS:

 正常关闭MongoDB的方法为:

   进入 mongo shell ,运行如下命令:

> use adminswitched to db admin> db.shutdownServer()Wed Jul 24 23:41:42.497 DBClientCursor::init call() failedserver should be down...Wed Jul 24 23:41:42.536 trying reconnect to 127.0.0.1:27017Wed Jul 24 23:41:42.539 reconnect 127.0.0.1:27017 failed couldn't connect to server 127.0.0.1:27017>