Changes between Initial Version and Version 1 of linux/MongoDB


Ignore:
Timestamp:
2015/11/08 21:13:37 (9 years ago)
Author:
yuna
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • linux/MongoDB

    v1 v1  
     1= MongoDBメモ 
     2 
     3{{{ 
     4# mongo 
     5MongoDB shell version: 2.6.11 
     6connecting to: test 
     7Server has startup warnings: 
     82015-11-08T20:52:52.189+0900 [initandlisten] 
     92015-11-08T20:52:52.189+0900 [initandlisten] ** WARNING: Readahead for /var/lib/mongodb is set to 4096KB 
     102015-11-08T20:52:52.189+0900 [initandlisten] **          We suggest setting it to 256KB (512 sectors) or less 
     112015-11-08T20:52:52.189+0900 [initandlisten] **          http://dochub.mongodb.org/core/readahead 
     12> show dbs 
     13admin          (empty) 
     14local          0.078GB 
     15openstack-log  0.078GB 
     16> use openstack-log 
     17switched to db openstack-log 
     18> show collections 
     19log 
     20system.indexes 
     21> db.log.find(); 
     22}}}