日期:2014-05-16  浏览次数:20540 次

【转】UBuntu上安装MongoDB server

http://www.mongodb.org/downloads

?

From: http://blog.csdn.net/sheismylife/article/details/6737127

?

=================


获取最新版本

wget http://fastdl.mongodb.org/linux/mongodb-linux-x86_64-2.0.2.tgz

解压缩即可执行

tar zxvf mongodb-linux-x86_64-2.0.2.tgz
cd /usr/mongodb-linux-x86_64-2.0.2/bin
但是在运行前,需要创建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

[plain] view plain copy print ?
  1. ???
  2. #!/bin/sh??
  3. ???
  4. ###?BEGIN?INIT?INFO??
  5. #?Provides:?????mongodb??