• 欢迎访问搞代码网站,推荐使用最新版火狐浏览器和Chrome浏览器访问本网站!
  • 如果您觉得本站非常有看点,那么赶紧使用Ctrl+D 收藏搞代码吧

MongoDB 安装、主从配置、以及监控

mysql 搞代码 4年前 (2022-01-09) 26次浏览 已收录 0个评论

使用TFTP烧写开发板,基于CentOS 6.4mdash;mdash;TQ2440

1、安装

——————————————————————————–
#添加安装源

[mongodb]
name=MongoDB Repository
baseurl=http://downloads-distro.mongodb.org/repo/RedHat/os/x86_64/
gpgcheck=0
enabled=1

#yum 安装
yum install -y mongo-10gen mongo-10gen-server

#添加到开机自动启动
chkconfig mongod on

2、启动,,停止,重启命令

——————————————————————————–
service mongod start

service mongod stop
service mongod restart

3、测试

——————————————————————————–
使用mongoperf 查看磁盘IO性能#mongoperf -h
usage:
mongoperf < myjsonconfigfile

{

nThreads:, // number of threads (default 1)
fileSizeMB:, // test file size (default 1MB)
sleepMicros:, // pause for sleepMicros/nThreads between each operation (default 0)
mmf:, // if true do i/o’s via memory mapped files (default false)
r:, // do reads (default false)
w:, // do writes (default false)
recSizeKB:, // size of each write (default 4KB)
syncDelay: // secs between fsyncs, like –syncdelay in mongod. (default 0/never)
}
进行测试:
[root@php1 ~]# cat <jsonfile
{
nThreads:1,
fileSizeMB:1,
sleepMicros:0,
mmf:’true’,
r:’true’,
w:’true’,
recSizeKB:4,
syncDelay:0
}

#参考Real world MongoDB benchmarks with benchRun
https://blog.serverdensity.com/real-world-mongodb-benchmarks-with-benchrun/

运行mongo
#mongo
>db.foo.insert( { _id : 1 } )
>ops = [{ op :”findOne”, ns :”test.foo”, query : { _id : 1 } }, { op :”update”, ns :”test.foo”, query : { _id : 1 } , update : { $inc : { x : 1 } } } ]
[
{
“op”:”findOne”,
“ns”:”test.foo”,
“query”: {
“_id”: 1
}
},
{
“op”:”update”,
“ns”:”test.foo”,
“query”: {
“_id”: 1
},
“update”: {
“$本文来源gaodai$ma#com搞$$代**码)网@inc”: {
“x”: 1
}
}
}
]
>for( x = 1; x<=128; x*=2){
… res = benchRun( { parallel : x ,
… seconds : 5 ,
… ops : ops
… } )
… print(“threads: “+ x +”\t queries/sec: “+ res.query )
… }

threads: 1 queries/sec: 7886.8
threads: 2 queries/sec: 12786.2
threads: 4 queries/sec: 14891.2
threads: 8 queries/sec: 16361.2
threads: 16 queries/sec: 19811.6
threads: 32 queries/sec: 18343.8
threads: 64 queries/sec: 26470.4
threads: 128 queries/sec: 36110.4

更多详情见请继续阅读下一页的精彩内容

MongoDB 的详细介绍:请点这里
MongoDB 的下载地址:请点这里

推荐阅读:

Java实现MongoDB中自增长字段

CentOS编译安装MongoDB

CentOS 编译安装 MongoDB与mongoDB的php扩展

CentOS 6 使用 yum 安装MongoDB及服务器端配置

Ubuntu 13.04下安装MongoDB2.4.3

如何在MongoDB中建立新数据库和集合

MongoDB入门必读(概念与实战并重)

《MongoDB 权威指南》(MongoDB: The Definitive Guide)英文文字版[PDF]


搞代码网(gaodaima.com)提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发送到邮箱[email protected],我们会在看到邮件的第一时间内为您处理,或直接联系QQ:872152909。本网站采用BY-NC-SA协议进行授权
转载请注明原文链接:MongoDB 安装、主从配置、以及监控

喜欢 (0)
[搞代码]
分享 (0)
发表我的评论
取消评论

表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址