MongoDB提供了linux平臺(tái)上32位和64位的安裝包,你可以在官網(wǎng)下載安裝包。
安裝前我們需要安裝各個(gè) Linux 平臺(tái)依賴(lài)包。
Red Hat/CentOS:
sudo yum install libcurl openssl
Ubuntu 18.04 LTS ("Bionic")/Debian 10 "Buster":
sudo apt-get install libcurl4 openssl
Ubuntu 16.04 LTS ("Xenial")/Debian 9 "Stretch":
sudo apt-get install libcurl3 openssl
MongoDB 源碼下載地址:https://www.mongodb.com/try/download/community
這里我們選擇 tgz 下載,下載完安裝包,并解壓 tgz(以下演示的是 64 位 Linux上的安裝) 。
wget https://fastdl.mongodb.org/linux/mongodb-linux-x86_64-ubuntu1604-4.2.8.tgz # 下載
tar -zxvf mongodb-linux-x86_64-ubuntu1604-4.2.8.tgz # 解壓
mv mongodb-src-r4.2.8 /usr/local/mongodb4 # 將解壓包拷貝到指定目錄
MongoDB 的可執(zhí)行文件位于 bin 目錄下,所以可以將其添加到 PATH 路徑中:
export PATH=<mongodb-install-directory>/bin:$PATH
?<mongodb-install-directory>
? 為你 MongoDB 的安裝路徑。如本文的 /usr/local/mongodb4 。
export PATH=/usr/local/mongodb4/bin:$PATH
MongoDB 的數(shù)據(jù)存儲(chǔ)在 data 目錄的 db 目錄下,但是這個(gè)目錄在安裝過(guò)程不會(huì)自動(dòng)創(chuàng)建,所以你需要手動(dòng)創(chuàng)建 data 目錄,并在 data 目錄中創(chuàng)建db目錄。
以下實(shí)例中我們將 data 目錄創(chuàng)建于根目錄下(/)。
注意:/data/db 是 MongoDB 默認(rèn)的啟動(dòng)的數(shù)據(jù)庫(kù)路徑(?--dbpath
?)。
mkdir -p /data/db
你可以在命令行中執(zhí)行mongo安裝目錄中的bin目錄執(zhí)行mongod命令來(lái)啟動(dòng)mongdb服務(wù)。
注意:如果你的數(shù)據(jù)庫(kù)目錄不是/data/db,可以通過(guò) --dbpath 來(lái)指定。
$ ./mongod
2015-09-25T16:39:50.549+0800 I JOURNAL [initandlisten] journal dir=/data/db/journal
2015-09-25T16:39:50.550+0800 I JOURNAL [initandlisten] recover : no journal files present, no recovery needed
2015-09-25T16:39:50.869+0800 I JOURNAL [initandlisten] preallocateIsFaster=true 3.16
2015-09-25T16:39:51.206+0800 I JOURNAL [initandlisten] preallocateIsFaster=true 3.52
2015-09-25T16:39:52.775+0800 I JOURNAL [initandlisten] preallocateIsFaster=true 7.7
如果你需要進(jìn)入MongoDB后臺(tái)管理,你需要先打開(kāi)mongodb裝目錄的下的bin目錄,然后執(zhí)行mongo命令文件。
MongoDB Shell是MongoDB自帶的交互式Javascript shell,用來(lái)對(duì)MongoDB進(jìn)行操作和管理的交互式環(huán)境。
當(dāng)你進(jìn)入mongoDB后臺(tái)后,它默認(rèn)會(huì)鏈接到 test 文檔(數(shù)據(jù)庫(kù)):
$ cd /usr/local/mongodb/bin
$ ./mongo
MongoDB shell version: 3.0.6
connecting to: test
Welcome to the MongoDB shell.
……
由于它是一個(gè)JavaScript shell,您可以運(yùn)行一些簡(jiǎn)單的算術(shù)運(yùn)算:
> 2+2
4
> 3+6
9
現(xiàn)在讓我們插入一些簡(jiǎn)單的數(shù)據(jù),并對(duì)插入的數(shù)據(jù)進(jìn)行檢索:
> db.W3Cschool.insert({x:10})
WriteResult({ "nInserted" : 1 })
> db.W3Cschool.find()
{ "_id" : ObjectId("5604ff74a274a611b0c990aa"), "x" : 10 }
>
第一個(gè)命令將數(shù)字 10 插入到 w3cschool 集合的 x 字段中。
第二個(gè)命令查詢w3cschool集合的所有內(nèi)容。
MongoDB 提供了簡(jiǎn)單的 HTTP 用戶界面。 如果你想啟用該功能,需要在啟動(dòng)的時(shí)候指定參數(shù)? --rest
?。
$ ./mongod --dbpath=/data/db --rest
MongoDB 的 Web 界面訪問(wèn)端口比服務(wù)的端口多1000。
如果你的MongoDB運(yùn)行端口使用默認(rèn)的27017,你可以在端口號(hào)為28017訪問(wèn)web用戶界面,即地址為:http://localhost:28017。
更多建議: