博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
MongoDB【第一篇】安装
阅读量:5045 次
发布时间:2019-06-12

本文共 1494 字,大约阅读时间需要 4 分钟。

第一步:准备

1. 操作系统

CentOS-7-x86_64-Everything-1511

2. MongoDB 版本

mongodb-linux-x86_64-rhel70-3.4.2

3. 设置 ulimit

1)查看

# uimit -a

2)配置 open files

# echo "* soft nofile 65535" >> /etc/security/limits.conf# echo "* hard nofile 65535" >> /etc/security/limits.conf

3)配置 max processes

# ulimit -u 65535

注意:修改后仅在当前 shell 中生效,所以请确保在当前 shell 中启动 MongoDB 。如果退出重登录,需要重新进行设置。

4)修改 transparent_hugepage

# echo "never" > /sys/kernel/mm/transparent_hugepage/enabled# echo "never" > /sys/kernel/mm/transparent_hugepage/defrag

注意:修改后如果重新启动主机,则需要重新执行上述命令。

5)修改 zone_reclaim_mode

# echo 0 > /proc/sys/vm/zone_reclaim_mode

第二步:安装

1. 安装包

mongodb-linux-x86_64-rhel70-3.4.2.tgz

2. 解压

# tar zxvf mongodb-linux-x86_64-rhel70-3.4.2.tgz

3. 创建目录

# mv mongodb-linux-x86_64-rhel70-3.4.2 mongodb# cd mongodb# mkdir logs# mkdir dbfile

4. 创建配置文件

# vi mongo.conf

配置文件内容:

systemLog:    destination: file    path: /root/mongodb/logs/mongo.log    logAppend: truestorage:    journal:        enabled: true    dbPath: /root/mongodb/dbfile/    directoryPerDB: true    engine: wiredTiger    wiredTiger:        engineConfig:            cacheSizeGB: 20            directoryForIndexes: true        indexConfig:            prefixCompression: trueprocessManagement:    fork: truenet:    port: 27017replication:    replSetName: rs1    oplogSizeMB: 250000

第三步:启动

1. 启动命令

# cd mongodb/bin# ./mongod --config ../mongo.conf

2. 启动信息

启动信息中显示 “child process started successfully, parent exiting”,即为启动成功。

转载于:https://www.cnblogs.com/RUReady/p/6475335.html

你可能感兴趣的文章
KMPnext数组循环节理解 HDU1358
查看>>
android调试debug快捷键
查看>>
【读书笔记】《HTTP权威指南》:Web Hosting
查看>>
Inoodb 存储引擎
查看>>
数据结构之查找算法总结笔记
查看>>
Linux内核OOM机制的详细分析
查看>>
Android TextView加上阴影效果
查看>>
Requests库的基本使用
查看>>
C#:System.Array简单使用
查看>>
C#inSSIDer强大的wifi无线热点信号扫描器源码
查看>>
「Foundation」集合
查看>>
算法时间复杂度
查看>>
二叉树的遍历 - 数据结构和算法46
查看>>
类模板 - C++快速入门45
查看>>
centos7 搭建vsftp服务器
查看>>
RijndaelManaged 加密
查看>>
Android 音量调节
查看>>
HTML&CSS基础学习笔记1.28-给网页添加一个css样式
查看>>
windows上面链接使用linux上面的docker daemon
查看>>
Redis事务
查看>>