1.MongoDB配置文件样例

# mongod.conf, Percona Server for MongoDB
# for documentation of all options, see:
#   http://docs.mongo.org/manual/reference/configuration-options/

# Where and how to store data.
storage:
  dbPath: /opt/mongo/mongo_data/  #数据文件位置
  journal:
    enabled: true
  engine: wiredTiger  #使用wiredTiger存储引擎

# Storage engine various options
#  More info for wiredTiger: https://docs.mongo.com/v3.4/reference/configuration-options/#storage-wiredtiger-options
#  wiredTiger:
#    engineConfig:
#      cacheSizeGB: 1
#      checkpointSizeMB: 1000
#      statisticsLogDelaySecs: 0
#      journalCompressor: snappy
#      directoryForIndexes: false
#    collectionConfig:
#      blockCompressor: snappy
#    indexConfig:
#      prefixCompression: true


# Two options below can be used for wiredTiger and inMemory storage engines
#setParameter:
#    wiredTigerConcurrentReadTransactions: 128
#    wiredTigerConcurrentWriteTransactions: 128

# where to write logging data.
systemLog:
 destination: file
 logAppend: true
 path: /opt/mongo/mongo_log/mongod.log  #定义日志文件位置

processManagement:
  fork: true
  pidFilePath: /opt/mongo/mongo_log/mongod.pid  #定义pid位置

# network interfaces
net:
  port: 27017
  bindIp: 10.140.0.4  #监听IP
  http:
    JSONPEnabled: false  #关闭jsonp调用
    RESTInterfaceEnabled: false  #关闭reset

security:
  authorization: enabled  #开启数据库认证
  

#operationProfiling:

#replication:

#sharding:

## Enterprise-Only Options:

#auditLog:

#snmp:

 

 

相关文章:

  • 2021-11-17
  • 2022-01-25
  • 2021-12-31
猜你喜欢
  • 2021-09-26
  • 2021-08-15
  • 2021-11-27
  • 2022-02-10
  • 2021-12-07
  • 2022-12-23
  • 2022-01-07
相关资源
相似解决方案