執行安裝包,一路下一步就行(不設定密碼)
管理員模式cmd執行如下命令:
mongod.exe --install
net start mongodb
安裝後執行環境路徑為:
將其加入path環境變數
預設儲存路徑是在c:\program files\mongodb\server\4.0\data
可以通過c:\program files\mongodb\server\4.0\bin\mongod.cfg進行修改(修改的路徑需要手動建立,記得重啟服務)
cmd下輸入mongo進行互動的shell
show dbs
顯示所有資料庫
db顯示當前使用的資料庫名稱
use jyl
建立/選擇資料庫jyl
db.dropdatabase()
刪除當前使用的資料庫
show collections
顯示當前使用的資料庫中的所有集合名
db.createcollection("jylcl")
建立集合jylcl
db.jylcl.drop()
刪除集合jylcl
db.jylcl.insert()
向集合jylcl插入資料,不存在則建立
db.jylcl.remove()
按照條件刪除集合中的文件
db.jylcl.update(,})
修改集合中的資料
db.jylcl.find()
查詢集合中所有資料,find().pretty()以格式化的方式來顯示所有文件
db.jylcl.find()
db.jylcl.find()
按照條件查詢集合中的文件
Windows環境下 MongoDB 安裝
1 安裝 1 解壓mongodb win32 x86 64 2.4.8.zip 建立路徑e program files mongodb 將解壓後的bin檔案copy to 此資料夾下 2 e program files mongodb 下建立data資料夾 e program files mongo...
在windows下安裝MongoDB
2.將壓縮檔案解壓到安裝目錄,這裡是 d program files 3.開啟命令列,進入安裝目錄,這裡是 d program files mongodb win32 i386 2.2.1 4.建立日誌目錄 d programdata mongodb log 5.建立資料檔案目錄 d program...
Windows下如何安裝MongoDB
解壓到 d soft 同時在該目錄下建立db和log兩個資料夾,在path變數中加入e soft mongodb win32 i386 2.0.8 bin,這樣就可以直接呼叫bin目錄下的exe檔案.執行如下命令 即將mongodb的資料庫檔案建立到d soft db目錄 另起乙個視窗連線 mong...