MongoDB學習(五)Linux環境安裝MongoDB

來源:互聯網
上載者:User

標籤:style   blog   http   color   io   os   使用   ar   strong   

一.   下載

從http://www.mongodb.org/downloads地址中下載:mongodb-linux-x86_64-2.4.11.tar

 

二.  安裝

1>設定mongoDB目錄
[[email protected] home]#cd /home/apps      
附:centOS下建立目錄命令  [[email protected] home]#mkdir -p /home/apps

2>將檔案mongodb-linux-x86_64-2.4.11.tar上傳至/home/apps目錄

3>解壓縮檔案
[[email protected] apps]#tar xzf mongodb-linux-x86_64-2.4.11.tar
檔案夾重新命名
[[email protected] apps]#mv mongodb-linux-x86_64-2.4.11 mongodb

4>建立目錄與檔案
[[email protected] apps]# mkdir -p  mongodb/data/db
[[email protected] apps]# mkdir -p  mongodb/logs
[[email protected] apps]# touch  mongodb/logs/mongodb.logs

5>啟動服務
[[email protected] apps]#./mongodb/bin/mongod -dbpath=/home/apps/mongodb/data/db -logpath=/home/apps/mongodb/logs/mongodb.logs
all output going to: /home/apps/mongodb/logs/mongodb.logs

6>將mongoDB服務加入隨機啟動
[[email protected] apps]#vi /etc/rc.local
使用vi編輯器開啟設定檔,並在其中加入下面一行代碼
[[email protected] apps]#/home/apps/mongodb/bin/mongod --dbpath /home/apps/mongodb/data/db --port 27017 --logpath /home/apps/mongodb/logs/mongodb.logs --logappend


7>串連mongoDB(注意不要關閉之前的介面,需要重新開啟一個視窗串連)
[[email protected] apps]# ./home/apps/mongodb/bin/mongo DBName
MongoDB shell version: 2.4.11
connecting to: DBName
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

出現以上介面表示串連成功。

 

三.  區域網路串連mongoDB

按照上面的操作,mongoDB的在Linux下安裝已完成,本地串連mongoDB也已成功。這時我們就要考慮到另外一個問題了,區域網路如何來串連mongoDB呢?區域網路中windows機器如何來串連Linux機器中的mongoDB呢?其實做法一樣很簡單:

[[email protected] apps]#./mongodb/bin/mongo 192.168.5.100/DBName

不過此處就需要注意了,我們需要在centOS上開啟mongoDB的連接埠號碼,接下來講講如何在centOS上開啟指定連接埠。先來查看下此連接埠是否被佔用:

[[email protected] apps]#netstat -anp |grep 27017

如若此連接埠未使用,再來開啟設定檔[[email protected] apps]# vi  /etc/sysconfig/iptables,在該檔案中添加如下內容:

# Firewall configuration written by system-config-securitylevel
# Manual customization of this file is not recommended.
*filter
:INPUT ACCEPT [0:0]
:FORWARD ACCEPT [0:0]
:OUTPUT ACCEPT [0:0]
:RH-Firewall-1-INPUT - [0:0]

-A RH-Firewall-1-INPUT -m state --state NEW -m tcp -p tcp --dport 27017 -j ACCEPT
COMMIT

然後重啟服務.

[[email protected] apps]#service iptables restart

此時,你已可以開始通過區域網路來訪問centOS上部署的mongoDB.

 

在本地瀏覽器中輸入http://192.168.5.100:27017/,若出現以下:

You are trying to access MongoDB on the native driver port. For http diagnostic access, add 1000 to the port number
表示串連成功。

 

四.  安裝過程中遇到的問題

1. Error: couldn‘t connect to server 127.0.0.1:27017 src/mongo/shell/mongo.js:91

解決辦法:執行以下語句

[[email protected] mongodb]# ./bin/mongod -dbpath=data/db

 

2.重啟防火牆時報錯:

解決方案:在最後添加COMMIT.

MongoDB學習(五)Linux環境安裝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.