五個(gè)步驟教會(huì)你在SentOS Linux下安裝MongoDB數(shù)據(jù)庫服務(wù)器
第一步:從網(wǎng)站上下載MongoDB到本機(jī),為安裝做好準(zhǔn)備curl -O linux/mongodb-linux-i686-1.8.1.tgz">http://fastdl.mongodb.org/linux/mongodb-linux-i686-1.8.1.tgz
第二步:設(shè)置MongoDB運(yùn)行目錄,并將其解壓縮到目錄下
1.創(chuàng)建目錄Apps作為MongoDB的運(yùn)行目錄[chhbjh@localhost ~]$ mkdir -p /Apps運(yùn)行此命令,可能報(bào)如下錯(cuò)誤:mkdir: 無法創(chuàng)建目錄 “/Apps”: 權(quán)限不夠以上問題是由于當(dāng)前Linux用戶沒有創(chuàng)建目錄的權(quán)限造成的,可以切換到root用戶下再執(zhí)行此命 令即可。
2.切換到MongoDB的運(yùn)行目錄/Apps下[root@localhost chhbjh]# cd /Apps
3.解壓縮mongodb-linux-i686-1.8.1.tgz到運(yùn)行目錄下[root@localhost Apps]# tar -zxvf /home/chhbjh/mongodb-linux-i686-2.0.0.tgz tar為解壓縮命令,參數(shù)說明:-z :如果同時(shí)具有 gzip 屬性,即使用 gzip 壓縮-x :解開一個(gè)壓縮文件的參數(shù)指令-v :壓縮的過程中顯示文件-f :使用檔名,請(qǐng)留意,在 f 之后要立即接文檔名,不要再加任何參數(shù)! 例如使用「 tar -zcvfP tfile sfile」是錯(cuò)誤,而要寫成 「 tar -zcvPf tfile sfile」
4.設(shè)置數(shù)據(jù)文件的存放目錄[root@localhost Apps]# mkdir -p mogodb/db
第三步:啟動(dòng)MongoDB服務(wù)[root@localhost bin]# /Apps/mongodb-linux-i686-2.0.0/bin/mongod ——dbpath=/Apps/mongodb/db服務(wù)啟動(dòng)后會(huì)監(jiān)聽27017端口
第四步:將 MongoDB 作為 Linux 服務(wù)隨機(jī)啟動(dòng)1、創(chuàng)建/Apps/mongodb/logs/mongodb.log文件,用于存儲(chǔ)MongoDB的日志文件2、配置MongoDB隨機(jī)啟動(dòng)。
vi /etc/rc.local, 使用vi編輯器打開配置文件,并在其中加入下面一行代碼 /Apps/mongodb/bin/mongod ——dbpath=/data/db ——logpath=/Apps/mongodb/logs/mongodb.log然后可以運(yùn)行命令[root@localhost bin]# /sbin/reboot NOW!重新啟動(dòng)系統(tǒng)進(jìn)行測(cè)試。
第五步:查看MongoDB的日志記錄[root@localhost logs]# pwd /Apps/mongodb/logs [root@localhost logs]# ll總計(jì) 8 -rw-r——r—— 1 root root 1483 09-25 23:14 mongodb.log執(zhí)行到此步,恭喜你完成了MongoDB數(shù)據(jù)庫服務(wù)器的安裝。
關(guān)鍵詞:SentOS,Linux,MongoDB,數(shù)據(jù)庫服務(wù)器
閱讀本文后您有什么感想? 已有 人給出評(píng)價(jià)!
- 0
- 1
- 0
- 0
- 0
- 0