MongoDB 参数配置

Linux 系统配置

vim /etc/security/limits.conf

* soft nofile 65535
* hard nofile 65535
* soft nproc 65535
* hard nproc 65535
mongod soft nofile 64000
mongod hard nofile 64000
mongod soft nproc 32000
mongod hard nproc 32000

vim /etc/rc.local
echo 'never' > /sys/kernel/mm/transparent_hugepage/defrag
echo 'never' > /sys/kernel/mm/transparent_hugepage/enabled


MongoDB 3.0安装

vim /etc/yum.repos.d/mongodb-org-3.0.repo

[mongodb-org-3.0]
name=MongoDB Repository
baseurl=https://repo.mongodb.org/yum/redhat/$releasever/mongodb-org/3.0/x86_64/
gpgcheck=0
enabled=1

yum -y install mongodb-org

卸载 yum -y remove mongodb-org*


配置文件

# mongod.conf

# for documentation of all options, see:
#   http://docs.mongodb.org/manual/reference/configuration-options/

# where to write logging data.
systemLog:
  destination: file
  logAppend: true
  path: /bak/logs/mongo/mongod.log

# Where and how to store data.
storage:
  dbPath: /opt/mongo
  journal:
    enabled: true
#  engine:
#  mmapv1:
#  wiredTiger:
  directoryPerDB: true
  syncPeriodSecs: 60
  engine: wiredTiger
  wiredTiger:
    engineConfig:
      cacheSizeGB: 8
# how the process runs
processManagement:
  fork: true  # fork and run in background
  pidFilePath: /var/run/mongodb/mongod.pid  # location of pidfile

# network interfaces
net:
  port: 27017
  bindIp: 127.0.0.1,10.45.13.13  # Listen to local interface only, comment to listen on all interfaces.


#security:

#operationProfiling:

#replication:

#sharding:

## Enterprise-Only Options

#auditLog:

#snmp:

注意:  使用 mongod -f /etc/mongod.conf 启动后,再用 service mongod start 无法启动,需要重新授权文件夹

修改启动服务 增加chown

vim /etc/init.d/mongod

case "$1" in
  start)
    chown -R mongod.mongod /var/run/mongodb/
    chown -R mongod.mongod /var/log/mongodb/
    chown -R mongod.mongod /var/lib/mongo/
    chown -R mongod.mongod /opt/mongo/
    chown -R mongod.mongod /bak/logs/mongo
    start
    ;;

chkconfig --del mongod

chkconfig --add mongod





你可能感兴趣的:(MongoDB 参数配置)