Ubuntu安裝MongoDB

來源:互聯網
上載者:User
Ubuntu安裝MongoDB

擷取最新版本
wget http://fastdl.mongodb.org/linux/mongodb-linux-x86_64-2.2.0.tgz

解壓縮即可執行

tar zxvf mongodb-linux-x86_64-2.2.0.tgz
cd /usr/mongodb-linux-x86_64-2.2.0/bin

建立連結

ln -s /usr/mongodb-linux-x86_64-2.2.0 mongodb
但是在運行前,需要建立mongodb需要的存放資料和日誌的目錄:
sudo mkdir -p /data/db/journal
sudo chmod -R 777 /data/db/
啟動mongodb server,-journal 代表要寫日誌,-maxConns=2400代表mongodb 可以接受2400個tcp串連,-rest代表可以允許用戶端通過rest API訪問mongdb server.
./mongod -journal -maxConns=2400 -rest
還可以使用參數—quiet啟動可以指定安靜模式減少記錄的項目數,注意使用該參數必須要同時指定日誌路徑,比如:
—quiet —logpath /data/db/journal/mongdb.log

相關說明
服務程式啟動後,終端會顯示一些資訊,比如:
Wed Aug 31 16:40:03 [initandlisten] MongoDB starting : pid=2410 port=27017 dbpath=/data/db/ 64-bit
Wed Aug 31 16:40:03 [initandlisten] db version v2.0.2, pdfile version 4.5
Wed Aug 31 16:40:03 [initandlisten] git version: c206d77e94bc3b65c76681df5a6b605f68a2de05
Wed Aug 31 16:40:03 [initandlisten] build sys info: Linux bs-linux64.10gen.cc 2.6.21.7-2.ec2.v1.2.fc8xen #1 SMP Fri Nov 20 17:48:28 EST 2009 x86_64 BOOST_LIB_VERSION=1_41
Wed Aug 31 16:40:03 [initandlisten] journal dir=/data/db/journal
Wed Aug 31 16:40:03 [initandlisten] recover : no journal files present, no recovery needed
Wed Aug 31 16:40:06 [initandlisten] preallocateIsFaster=true 33.84
Wed Aug 31 16:40:08 [initandlisten] preallocateIsFaster=true 36.84
Wed Aug 31 16:40:11 [initandlisten] preallocateIsFaster=true 37.48
Wed Aug 31 16:40:11 [initandlisten] preallocating a journal file /data/db/journal/prealloc.0
Wed Aug 31 16:41:03 [initandlisten] preallocating a journal file /data/db/journal/prealloc.1
Wed Aug 31 16:41:55 [initandlisten] preallocating a journal file /data/db/journal/prealloc.2
Wed Aug 31 16:42:48 [initandlisten] waiting for connections on port 27017
Wed Aug 31 16:42:48 [initandlisten] —maxConns too high, can only handle 819
Wed Aug 31 16:42:48 [websvr] web admin interface listening on port 28017
Wed Aug 31 16:42:48 [dur] lsn set 0
Wed Aug 31 16:43:03 [dur] lsn set 14440
Wed Aug 31 16:44:03 [dur] lsn set 74050
Wed Aug 31 16:45:03 [dur] lsn set 133660
Wed Aug 31 16:46:03 [dur] lsn set 193270
Wed Aug 31 16:47:03 [dur] lsn set 252880
Wed Aug 31 16:48:03 [dur] lsn set 312490
Wed Aug 31 16:49:03 [dur] lsn set 372110
Wed Aug 31 16:50:03 [dur] lsn set 431720
Wed Aug 31 16:51:03 [dur] lsn set 491330
Wed Aug 31 16:52:03 [dur] lsn set 550940
Wed Aug 31 16:53:03 [dur] lsn set 610550

我們可以看到進程id,監聽的TCP連接埠號碼和web管理員連接埠號碼。還能看到資料檔案和記錄檔所在目錄。並且提示最大串連數達不到設定的2400.


修改系統允許的最大串連數
上面的最大串連數目的限制原因是Linux系統預設一個進程最大檔案開啟數目為1024,用ulimit -a 命令檢查,可以看到下面這行:
open files                      (-n) 1024


修改/etc/security/limits.conf 設定檔。
使用命令:sudo gedit /etc/security/limits.conf
在檔案中增加
* soft nofile 3000
* hard nofile 20000
root soft nofile 3000
root hard nofile 20000
* 表示該配置對所有使用者均有效,root使用者要特別加兩行。
硬限制通常是根據系統硬體資源狀況(主要是系統記憶體)計算出來的系統最多可同時開啟的檔案數量,軟式節流是在這個基礎上進一步的限制。因此軟式節流數目要低於硬限制。
nofile表示 max number of open files
重新啟動電腦,然後再用ulimit -a 命令查看:
open files                      (-n) 3000
已經生效了。現在再啟動mongodb server,問題解決

現在還有一個更簡單的方法,在開機指令碼裡面設定,參考下一節。

設定開機啟動
在/etc/init.d/目錄下建立指令檔mongodb

  1. #!/bin/sh  
  2.    
  3. ### BEGIN INIT INFO  
  4. # Provides:     mongodb  
  5. # Required-Start:  
  6. # Required-Stop:  
  7. # Default-Start:        2 3 4 5  
  8. # Default-Stop:         0 1 6  
  9. # Short-Description: mongodb  
  10. # Description: mongo db server  
  11. ### END INIT INFO  
  12.    
  13. . /lib/lsb/init-functions  
  14.    
  15. PROGRAM=/usr/mongodb/bin/mongod  
  16. MONGOPID=`ps -ef | grep 'mongod' | grep -v grep | awk '{print $2}'`  
  17.    
  18. test -x $PROGRAM || exit 0  
  19.    
  20. case "$1" in  
  21.   start)  

 

  1.      ulimit -n 3000  
  2.      log_begin_msg "Starting MongoDB server"   
  3.      $PROGRAM --fork --quiet -journal -maxConns=2400 -rest --logpath /data/db/journal/mongdb.log  
  4.      log_end_msg 0  
  5.      ;;  
  6.   stop)  
  7.      log_begin_msg "Stopping MongoDB server"   
  8.      if [ ! -z "$MONGOPID" ]; then   
  9.         kill -15 $MONGOPID  
  10.      fi  
  11.      log_end_msg 0  
  12.      ;;  
  13.   status)  
  14.      ;;  
  15.   *)  
  16.      log_success_msg "Usage: /etc/init.d/mongodb {start|stop|status}"   
  17.      exit 1  
  18. esac  
  19.    
  20. exit 0  

相關文章

聯繫我們

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