CentOS 5.6怎麼安裝MongoDB資料庫?

來源:互聯網
上載者:User

標籤:http   os   使用   ar   檔案   資料   sp   on   html   

1. 下載Linux版本的 MongoDB 資料庫

到官方的下載頁面下載mongodb的Linux版本,32位還是64位根據自己的情況自行選擇

http://www.mongodb.org/downloads

或者直接使用wget在伺服器上下載

wget http://fastdl.mongodb.org/linux/mongodb-linux-i686-1.8.2.tgz

下載完成後解壓縮壓縮包

tar zxf mongodb-linux-i686-1.8.2.tgz

2. 安裝準備

將mongodb移動到/usr/local/mongdb檔案夾

mv mongodb-linux-i686-1.8.2 /usr/local/mongodb

建立資料庫檔案夾

mkdir /usr/local/mongodb/data

將mongodb啟動項目加入rc.local保證mongodb在伺服器開機時啟動

echo "/usr/local/mongodb/bin/mongod --dbpath=/usr/local/mongodb/data" >> /etc/rc.local

啟動mongodb

/usr/local/mongodb/bin/mongod --dbpath=/usr/local/mongodb/data

看到的輸出就說明mongodb啟動了

當然如果你還不放心,可以運行下列命令

/usr/local/mongodb/bin/mongo

來進入mongodb的shell模式,如果看到下列輸出,那麼表示mongodb已經啟動成功,Have fun!

 

補充內容:

通過yum來安裝MongoDB生產環境的方法

建立並編輯

/etc/yum.repos.d/10gen.repo

64位系統的請填寫下列內容

[10gen]
name=10gen Repository
baseurl=http://downloads-distro.mongodb.org/repo/redhat/os/x86_64

gpgcheck=0

32位系統請填寫下列內容

[10gen]
name=10gen Repository
baseurl=http://downloads-distro.mongodb.org/repo/redhat/os/i686
gpgcheck=0

注意mongodb在32位系統下有2GB資料容量的限制

儲存後運行下列命令

yum install mongo-10gen-server

即可安裝好mongodb

CentOS 5.6怎麼安裝MongoDB資料庫?

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.