MongoDB學習筆記<七>

來源:互聯網
上載者:User

標籤:mongodb   tokumx   nosql   

繼續MongoDB的學習

1.匯出資料(中斷其他動作)

把資料庫test中的books集合匯出

在終端下進行操作

mongoexport -d test -c books -o /home/hadoop/Desktop/books.json

2.匯入資料(中斷其他動作)

也是在終端下進行操作

mongoimport --db test --collection books --file /home/hadoop/Desktop/books.json

3.運行時備份mongodump

終端下進行操作

匯出127.0.0.1伺服器的27017下的test資料庫

mongodump --host 127.0.0.1:27017 -d test -o /home/hadoop/Desktop/test

4.運行時恢複mongorestore

終端下進行操作

mongodump --host 127.0.0.1:27017 -d test -directoryperdb /home/hadoop/Desktop/test/test

5.上鎖操作

db.runCommand({fsync:1,lock:1})

6.解鎖操作

db.currentOp()

7.資料修複

db.repairDatabase()

8.添加使用者

db.addUser("xiaoming","123")

9.刪除使用者

db.system.users.remove({user:"xiaoming"})


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.