CentOS 6.5安裝二進位版本的MongoDB 2.6

來源:互聯網
上載者:User

CentOS 6.5安裝二進位版本的MongoDB 2.6作者:chszs,轉載需註明。部落客頁:http://blog.csdn.net/chszs

MongoDB的國外鏡像訪問非常慢,以至於選擇MongoDB官網的線上安裝很不靠譜。那麼,我們可以選擇安裝MongoDB 2.6的二進位發布包。

下面我們在CentOS 6.5 x64系統上安裝最新的MongoDB 2.6.0二進位發行版。

1、下載MongoDB 2.6.0二進位發行版
$ curl -O http://downloads.mongodb.org/linux/mongodb-linux-x86_64-2.6.0.tgz

2、解壓MongoDB的壓縮包
$ tar zvxf mongodb-linux-x86_64-2.6.0.tgz 

3、簡化目錄名
$ mv mongodb-linux-x86_64-2.6.0 mongodb

4、配置PATH環境變數
要確保MongoDB的bin目錄包含在PATH環境變數中。
或者初級符號串連到/usr/local/bin目錄。
$ sudo vi /etc/profile
添加下面的內容:
export PATH=$PATH:/home/chuser/mongodb/bin
讓環境變數生效:
$ source /etc/profile
驗證環境變數是否生效:
$ mongod -version
db version v2.6.0
2014-04-14T02:53:01.082+0000 git version: 1c1c76aeca21c5983dc178920f5052c298db616c

5、運行MongoDB
建立資料目錄
$ mkdir -p mongodb/data/db
要確保mongod對資料目錄有讀寫權限。
運行MongoDB(指定建立的資料目錄)
$ mongod --dbpath /home/chuser/mongodb/data &

6、驗證MongoDB是否正常運行
$ mongo
MongoDB shell version: 2.6.0
connecting to: test
2014-04-14T03:40:59.560+0000 [initandlisten] connection accepted from 127.0.0.1:39014 #1 (1 connection now open)
Welcome to the MongoDB shell.
For interactive help, type "help".
For more comprehensive documentation, see
http://docs.mongodb.org/
Questions? Try the support group
http://groups.google.com/group/mongodb-user
> show databases;
admin  (empty)
local  0.078GB

相關文章

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.