ODS項目——mongoDB使用文檔

來源:互聯網
上載者:User

標籤:des   io   os   使用   sp   cti   on   c   log   

 

1.啟動mongodb:
#cd /srv/infra/mongodb/mongodb2.6.4/bin
# ./mongod --dbpath=/mongodbdata/mongodb_db --port 27018  --logpath=/mongodbdata/mongodb_logs/mongodb.log --logappend&

2.關閉mongodb:
[[email protected] mongodb]# mongo
MongoDB shell version: 2.6.4
connecting to: test

> use admin
switched to db admin

> db.shutdownServer()

3.重啟
      /srv/infra/mongodb/mongodbdata/mongodb_db 目錄下刪除 mongod.lock
  
      #cd /srv/infra/mongodb/mongodb2.6.4/bin
      # ./mongod --dbpath=/mongodbdata/mongodb_db --port 27018  --logpath=/mongodbdata/mongodb_logs/mongodb.log --logappend&

 

========================進入命令列操作:==============================================================

[[email protected] mongodb_db]# mongo        #進去命令列
MongoDB shell version: 2.6.4
connecting to: test                       #預設串連到test庫
> show dbs                                #顯示 所有庫
admin    (empty)
local    0.078GB
ods_mss  0.453GB
> use ods_mss                             #串連到ods_mss庫
switched to db ods_mss
> show tables                             #顯示所有表
CustMessage
system.indexes
>
  
  
  
4.建立表、刪除表


建立表:  db.createCollection("table_name")
刪除表:  db.table_name.drop()
條件刪除:db.table_name.remove({‘id‘:‘123‘})

   

5.建立索引、刪除索引
 db.Table_Name.ensureIndex({KEY:1})       
 
 這裡關鍵是要在其中建立索引,1是按升序排列的欄位名稱。要建立降序索引,需要使用-1。
 例如:db.Table_1.ensureIndex({"title":1,"description":-1})

 

6.尋找:
  db.table_name.find()             #查所有
  db.table_name.find().pretty()    #查所有,按格式顯示
  db.table_name.find().count()     #查總條數
  db.table_name.findOne()          #查第一條
 
 

 


 

ODS項目——mongoDB使用文檔

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.