CentOS 6.5下安裝mongodb 2.6.5

來源:互聯網
上載者:User

標籤:mongodb   nosql   linux   安裝   centos   

        Mongo DB是目前在IT行業非常流行的一種非關係型資料庫(NoSql),其靈活的資料存放區方式,備受當前IT從業人員的青睞。Mongo DB很好的實現了物件導向的思想,在Mongo DB中,每一條記錄都是一個Document對象。Mongo DB最大的優勢在於所有的資料持久操作都無需開發人員手動編寫SQL語句,直接調用方法就可以輕鬆的實現CRUD操作。在這裡介紹一下mongodb的安裝方法:

1、檢查是否安裝過mongodb,如已安裝,則刪除
# rpm -qa | grep mongodb 



2、下載mongodb(下載到/doiido/soft)
# mkdir /doiido/soft
# wget https://fastdl.mongodb.org/linux/mongodb-linux-x86_64-2.6.5.tgz -P /doiido/soft


3、解壓縮mongodb
# cd /doiido/soft
# tar zxvf mongodb-linux-x86_64-2.6.5.tgz
# mv mongodb-linux-x86_64-2.6.5 /doiido/mongodb


4、建立資料庫和日誌的儲存目錄
# mkdir /doiido/mongodb/data
# mkdir /doiido/mongodb/logs
# touch /doiido/mongodb/logs/mongodb.log


5、建立設定檔
# vi /doiido/mongodb/bin/mongodb.conf
dbpath=/doiido/mongodb/data
logpath=/doiido/mongodb/logs/mongodb.log
port=27017
fork=true
nohttpinterface=true


6、啟動mongodb
# /doiido/mongodb/bin/mongod --bind_ip localhost -f /doiido/mongodb/bin/mongodb.conf


7、設定開機啟動
# echo "/doiido/mongodb/bin/mongod --config /doiido/mongodb/bin/mongodb.conf" >> /etc/rc.local


8、測試
8.1、進入mongodb的shell模式 
# /doiido/mongodb/bin/mongo

8.2、查看資料庫列表 
> show dbs

8.3、當前db版本 
> db.version();


9、停止mongodb
9.1、進入mongodb關閉
# /doiido/mongodb/bin/mongo
> db.shutdownServer();

9.2、使用mongodb指令關閉
# mongod --shutdown --config /doiido/mongodb/bin/mongodb.conf

9.3、使用kill指令
# ps -ef|grep mongo

# kill pid


注意:這個地方不能使用kill -9 pid,這樣會導致資料丟失,同時mongodb還可能會報錯。
如果使用kill -9 pid的方式關閉mongodb,並且mongodb不能正常啟動,則需刪除mongod.lock檔案:
# rm -f /doiido/mongodb/data/mongod.lock
# /doiido/mongodb/bin/mongod --config /doiido/mongodb/bin/mongodb.conf

CentOS 6.5下安裝mongodb 2.6.5

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.