sh.status()  ---Sharding Status ---   sharding version..."/>
溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

mongodb基本命令

發(fā)布時(shí)間:2020-06-11 12:50:53 來源:網(wǎng)絡(luò) 閱讀:392 作者:易金剛 欄目:數(shù)據(jù)庫

Mongodb維護(hù)基本命令

user管理命令適用在2.*版本3.*有些改動(dòng) 

1.查看詳細(xì)分片信息

mongos>sh.status() 

---Sharding Status ---

  sharding version: {

       "_id" : 1,

       "version" : 4,

       "minCompatibleVersion" : 4,

       "currentVersion" : 5,

       "clusterId" :ObjectId("569c8e920d9b1cb4bbf4169a")

}

  shards:

       { "_id" : "shard1", "host" :"shard1/192.168.0.167:20200,192.168.0.25:20100" }

       { "_id" : "shard2", "host" :"shard2/192.168.0.167:20020,192.168.0.167:20030" }

       { "_id" : "shard3", "host" :"shard3/192.168.0.167:30003,192.168.0.25:30001" }

  databases:

       { "_id" : "admin", "partitioned" : false, "primary" : "config" }

       { "_id" : "test", "partitioned" : false, "primary" : "shard3" }

 

2. 僅顯示分片

>useconfig;

>db.shards.find()

{"_id" : "shard1", "host" :"shard1/10.10.10.39:20100,10.10.10.49:20200" }

{"_id" : "shard2", "host" :"shard2/10.10.10.39:20010,10.10.10.49:20020" }

{"_id" : "shard3", "host" :"shard3/10.10.10.39:30001,10.10.10.49:30002" }

 

3.查看集群相關(guān)信息

mongos>db.serverStatus()

 

4.數(shù)據(jù)庫用戶及數(shù)據(jù)庫信息

mongos> show dbs;

admin  0.016GB

config 0.016GB

testdb 0.156GB

 

mongos> use ttdb           \\創(chuàng)建數(shù)據(jù)庫

switched to db ttdb

 

mongos> db.addUser('tt','123456') \\為數(shù)據(jù)庫添加用戶名和密碼

WARNING: The 'addUser' shell helper isDEPRECATED. Please use 'createUser' instead

Successfully added user: { "user": "tt", "roles" : [ "dbOwner" ] }

 

# /mnt1/data/mongodbtest/mongodb/bin/mongo 192.168.0.25:20001/ttdb

MongoDB shell version: 2.6.5

connecting to: 192.168.0.25:20001/ttdb

 

mongos> show collections      \\未使用用戶密碼登錄數(shù)據(jù)庫,報(bào)沒有權(quán)限錯(cuò)誤

2016-01-18T17:42:27.981+0800 error: {

         "$err": "not authorized for query on ttdb.system.namespaces",

         "code": 13

} at src/mongo/shell/query.js:131

mongos> db              \\查看當(dāng)前所使用的數(shù)據(jù)庫

ttdb

mongos> db.auth('tt','123456')

1                        \1 代表驗(yàn)證成功

mongos>show collections

mongos> use ttdb

switched to db ttdb

 

mongos> show collections

mongos> db.dropDatabase();      \\刪除數(shù)據(jù)庫

{ "dropped" : "ttdb","ok" : 1 }

mongos> use admin

switched to db admin

mongos> show dbs;

admin  0.016GB

config 0.016GB

 

mongos> use admin

mongos> db.system.users.find()     \\查看當(dāng)前數(shù)據(jù)庫的用戶

 

mongos> use ttdb

switched to db ttdb

mongos> db.dropUser("sa")       \\刪除數(shù)據(jù)庫用戶

true

 

>use ttdb

>db.table1.stats();         \\查看表的狀態(tài)

 

db.addUser("tx","tx",ture);     \\添加只讀的數(shù)據(jù)庫用戶

2016-01-26T16:16:26.153+0800ReferenceError: ture is not defined

mongos> db.addUser("tx","tx",true);

WARNING: The 'addUser' shell helper isDEPRECATED. Please use 'createUser' instead

Successfully added user: { "user": "tx", "roles" : [ "read" ] }

mongos>db.createCollection("Account")

{

         "ok": 0,

         "errmsg": "not authorized on ttdb to execute command { create:\"Account\" }",

         "code": 13

}                  \\創(chuàng)建集合會(huì)報(bào)錯(cuò)

 

5. balancer     (復(fù)制相關(guān))

mongos> use config

switched to db config

mongos> sh.getBalancerState();    \\查看進(jìn)程狀態(tài)

true

mongos> sh.stopBalancer();

Waiting for active hosts...

Waiting for the balancer lock...

Waiting again for active hosts afterbalancer is off...

 

mongos> sh.getBalancerState();

false

mongos> sh.startBalancer();

mongos> sh.getBalancerState();

true

 


向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI