這個mongodb速成文章第二篇,第一篇最基礎的請看下面連結(希望給個贊哦,比心^^)
1、通過配置項啟動資料庫
引數 | 含義 |
---|---|
-dbpath | 指定資料庫檔案的目錄 |
--port | 埠 預設是27017 28017 |
--fork | 以後臺守護的方式進行啟動 |
--logpath | 指定日誌檔案輸出路徑 |
--config | 指定一個配置檔案 |
--auth | 以安全方式啟動資料庫,預設不驗證 |
首先需要建立一個mongo.conf檔案,通過檔案來啟動mongodb伺服器
1.1 為什麼要這麼做
把常用配置寫在一個檔案裡,這樣不用每次都自己輸入引數,提高易維護性
1.2 mongo.conf
dbpath=F:\mongo\data
logpath=F:\mongo
port=50001
複製程式碼
注意data目錄要提前建立好
1.3 啟動伺服器
mongod --config mongo.conf
複製程式碼
1.4 啟動客戶端
mongo --port 50001
複製程式碼
2、 匯入匯出資料
這命令是儲存成了檔案格式
- mongoimport 匯出資料
- mongoexport 匯入資料
引數 | 含義 |
---|---|
-h [ --host ] | 連線的資料庫 |
--port | 埠號 |
-u | 使用者名稱 |
-p | 密碼 |
-d | 匯出的資料庫 |
-d | 匯出的資料庫 |
-c | 指定匯出的集合 |
-o | 匯出的檔案儲存路徑 |
-q | 進行過濾 |
2.1 準備資料
use c1;
var data =[
{name: "mx0", index: 0},
{name: "mx1", index: 1},
{name: "mx2", index: 2},
{name: "mx3", index: 3},
{name: "mx4", index: 4},
{name: "mx5", index: 5},
{name: "mx6", index: 6},
{name: "mx7", index: 7},
{name: "mx8", index: 8},
{name: "mx9", index: 9}
];
db.c1.insert(data);
db.c1.find();
複製程式碼
2.2 備份記錄
mongoexport -h 127.0.0.1 --port 50001 -d c1 -c c1 -o c1.bak
複製程式碼
2.3 刪除記錄
db.c1.remove({});
db.c1.find()
複製程式碼
2.4 匯入記錄
這時候再把資料匯入進來
mongoimport -h 127.0.0.1 --port 50001 -d c1 -c c1 --file c1.bak
複製程式碼
3、 備份與恢復
3.1 備份和上面的匯出資料有什麼區別
上面匯出資料只能匯出json格式的,但有時候我們的mongodb會存2進位制的資料,這個時候json不支援這種資料型別,所以需要我們接下來的這種方式來匯出資料。
3.1 mongodump
在Mongodb中我們使用mongodump命令來備份MongoDB資料。該命令可以匯出所有資料到指定目錄中。
mongodump -h dbhost -d dbname -o dbdirectory
複製程式碼
- | - |
---|---|
-h | MongDB所在伺服器地址,例如:127.0.0.1,當然也可以指定埠號:127.0.0.1:27017 |
-d | 需要備份的資料庫例項,例如:test |
-o | 備份的資料存放位置 |
mongodump -h 127.0.0.1:50001 -d c1 -o c1.dmp
複製程式碼
3.2 mongorestore
mongodb使用 mongorestore 命令來恢復備份的資料。
--host MongoDB所在伺服器地址 --db -d 需要恢復的資料庫例項 最後的一個引數,設定備份資料所在位置 mongorestore data.dmp
mongorestore -h 127.0.0.1:50001 -d c2 c1.dmp/c1
複製程式碼
5、 鎖定和解鎖資料庫
為了資料的完整性和一致性,匯出前要先鎖定寫入,匯出後再解鎖。
> use admin;
switched to db admin
> db.runCommand({fsync:1,lock:1});
{
"info" : "now locked against writes, use db.fsyncUnlock() to unlock",
"seeAlso" : "http://dochub.mongodb.org/core/fsynccommand",
"ok" : 1
}
> db.fsyncUnlock();
{ "ok" : 1, "info" : "unlock completed" }
複製程式碼
首先會把緩衝區資料暴力刷入硬碟,然後給資料庫一個寫入鎖,其他例項的寫入操作全部被阻塞,直到fsync+lock釋放鎖為止
6. 使用者管理
6.1 檢視角色
show roles;
複製程式碼
內建角色
- | - |
---|---|
資料庫使用者角色 | read、readWrite |
資料庫管理角色 | dbAdmin、dbOwner、userAdmin |
叢集管理角色 | clusterAdmin、clusterManager、clusterMonitor、hostManage |
所有資料庫角色 | readAnyDatabase、readWriteAnyDatabase、userAdminAnyDatabase、dbAdminAnyDatabase |
超級使用者角色 | root |
內部角色 | __system |
6.2 建立使用者的方法
use admin;
db.createUser({user:'mx',pwd:'123456',roles:[{role:'read',db:'c1'}]});
複製程式碼
6.3 檢視使用者的許可權
db.runCommand({usersInfo:'mx',showPrivileges:true});
複製程式碼
6.4 伺服器啟動許可權認證
mongod --dbpath=F:\data --auth
複製程式碼
6.5 使用者登入和修改密碼
use admin;
db.auth('mx','123456')
db.changeUserPassword('mx2','123');
db.auth('mx2','123')
複製程式碼
7. 資料庫高階命令
7.1 準備資料
var c1 = [
{provience:'北京',home:'北京',age:1},
{provience:'北京',home:'北京',age:2},
{provience:'北京',home:'北京',age:3},
{provience:'廣東',home:'廣州',age:1},
{provience:'廣東',home:'佛山',age:2},
{provience:'廣東',home:'東莞',age:3}
]
db.c1.insert(c1);
複製程式碼
7.2 count
檢視記錄數
db.c1.find().count();
複製程式碼
7.3 查詢不重複的值
distinct
db.runCommand({distinct:'c1',key:'home'}).values;
// [ "北京", "廣東" ]
複製程式碼
7.3 group 分組
db.runCommand({
group:{
ns:集合名稱,
key:分組的鍵,
initial:初始值,
$reduce:分解器
query:條件,
finalize:完成時的處理器
}
});
複製程式碼
7.3.1 按城市分組
db.runCommand({
group: {
ns: 'c1',
key: { provience:1 },
query: {age:{$gt:1}},
initial: {total: 0},
$reduce:function(doc, initial){
initial.total+=doc.age
}
}
})
複製程式碼
7.4 刪除集合
db.runCommand({drop:'c1'});
複製程式碼
7.5 runCommand常用命令
db.runCommand({buildInfo:1});
複製程式碼
可以看見有作業系統資訊是windows,架構師x86_64,等等系統的資訊
db.runCommand({getLastError:"c1"});
複製程式碼
8. 什麼固定集合
MongoDB 固定集合(Capped Collections)是效能出色且有著固定大小的集合,對於大小固定,我們可以想象其就像一個環形佇列,當集合空間用完後,再插入的元素就會覆蓋最初始的頭部的元素!
8.1 特性
- 沒有索引
- 插入和查詢速度速度非常快 不需要重新分配空間
- 特別適合儲存日誌
8.2 建立固定集合
- 我們通過createCollection來建立一個固定集合,且capped選項設定為true:
- 還可以指定文件個數,加上max:1000屬性:
- 判斷集合是否為固定集合: db.logs.isCapped()
- size 是整個集合空間大小,單位為【KB】
- max 是集合文件個數上線,單位是【個】
- 如果空間大小到達上限,則插入下一個文件時,會覆蓋第一個文件;如果文件個數到達上限,同樣插入下一個文件時,會覆蓋第一個文件。兩個引數上限判斷取的是【與】的邏輯。
- capped 封頂的
db.createCollection('logs',{size:50,max:5,capped:true});
複製程式碼
8.3 非固定集合轉為固定集合
db.runCommand({convertToCapped:"logs",size:5});
複製程式碼
9. gridfs
- gridfs是mongodb自帶的檔案系統,使用二進位制儲存檔案。
- mongodb可以以BSON格式儲存二進位制物件。
- 但是BSON物件的體積不能超過4M。所以mongodb提供了mongofiles。它可以把一個大檔案透明地分割成小檔案(256K),從而儲存大體積的資料。
- GridFS 用於儲存和恢復那些超過16M(BSON檔案限制)的檔案(如:圖片、音訊、視訊等)。
- GridFS 用兩個集合來儲存一個檔案:fs.files與fs.chunks。
- 每個檔案的實際內容被存在chunks(二進位制資料)中,和檔案有關的meta資料(filename,content_type,還有使用者自定義的屬性)將會被存在files集合中。
9.1 上傳一個檔案
- | - |
---|---|
-d | 資料庫的名稱 |
-l | 原始檔的位置 |
put | 指定檔名 |
// test.txt必須建立在當前目錄
mongofiles -d myfiles put test.txt
複製程式碼
9.2 獲取並下載檔案
mongofiles -d myfiles get 'test.txt'
複製程式碼
9.3 檢視所有檔案
mongofiles -d myfiles list
>db.fs.files.find()
>db.fs.chunks.find()
複製程式碼
9.4 刪除檔案
mongofiles -d myfiles delete "test.txt"
複製程式碼