MongoDB預設是不需要帳號密碼就可以使用,這樣容易有安全性的問題,所以當我們在使用MongoDB之前就需要啟用資料庫的 登入機制。
[ Mongodb ] – How to backup and restore databases in Mongodb using mongodump and mongorestore 如何在 Mongodb 中如何備份與還原資料庫使用 mongodump 與 mongorestore
今天來介紹在 Mongodb 中如何備份與還原資料庫,我們將使用 mongodump 與 mongorestore 來達到此需求。
Today we will introduce how to backup and restore databases in Mongodb. We will use mongodump and mongorestore to meet this requirement.
[ Mongodb ] – How to show Mongodb size 如何查詢 Mongodb 容量
Mongodb 在我的使用情境下都拿來存統計的資料,但為避免儲存空間不足造成網站掛掉,所以定時的去檢查每個資料庫使大小是一定要的。
Mongodb is used to store statistical data in my use situation, but in order to avoid insufficient storage space and cause the website to hang up, it is necessary to check the size of each database regularly.
[ Mongodb ] – Mongodb command line mode 的基楚操作指令
這邊記錄一下 mongodb command line mode 的基楚操作指令 從無到有的 建立 collections 新增 查詢 更新 刪除 等基本指令,我的環境是 MongoDB shell version v3.6.3 指令可能會因不同版本有些微的差異。
[ MongoDB ] – How to show collections in PHP7
然已進化到可以存json格式但統計方面還是不便,這次要做到的功能其實很簡單就是 show collections ,列出所有集合(資料表),下指令很簡單 但 php 新版的mongodb 驅動已更新,舊的語法不能用著實讓我很困擾。