2. mongodb常用命令

來源:互聯網
上載者:User

標籤:io   使用   sp   on   資料   div   bs   cti   ad   

資料庫常用命令1、Help查看命令提示  help  db.help();  db.yourColl.help();  db.youColl.find().help();  rs.help();2、切換/建立資料庫 use yourDB;  當建立一個集合(table)的時候會自動建立當前資料庫3、查詢所有資料庫 show dbs;4、刪除當前使用資料庫 db.dropDatabase();5、從指定主機上複製資料庫 db.cloneDatabase(“127.0.0.1”); 將指定機器上的資料庫的資料複製到當前資料庫6、從指定的機器上複製指定資料庫資料到某個資料庫 db.copyDatabase("mydb", "temp", "127.0.0.1");將原生mydb的資料複製到temp資料庫中7、修複當前資料庫 db.repairDatabase();8、查看當前使用的資料庫 db.getName(); db; db和getName方法是一樣的效果,都可以查詢當前使用的資料庫9、顯示當前db狀態 db.stats();10、當前db版本 db.version();11、查看當前db的連結機器地址 db.getMongo(); Collection聚集集合1、建立一個聚集集合(table) db.createCollection(“collName”, {size: 20, capped: 5, max: 100});2、得到指定名稱的聚集集合(table) db.getCollection("account");3、得到當前db的所有聚集集合 db.getCollectionNames();4、顯示當前db所有叢集索引的狀態 db.printCollectionStats();  使用者相關1、添加一個使用者 db.addUser("name"); db.addUser("userName", "pwd123", true); 添加使用者、設定密碼、是否唯讀2、資料庫認證、安全模式 db.auth("userName", "123123");3、顯示當前所有使用者 show users;4、刪除使用者 db.removeUser("userName"); 其他1、查詢之前的錯誤資訊 db.getPrevError();2、清除錯誤記錄 db.resetError(); 

2. 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.