zoukankan      html  css  js  c++  java
  • Mongodb-安全配置优化

    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:
  • 相关阅读:
    2018年9月28日CCPC秦皇岛站参赛总结
    数学:二次剩余与n次剩余
    数学:拓展Lucas定理
    BZOJ2301:莫比乌斯反演+二维容斥解决GCD范围计数
    数学:莫比乌斯反演-约数个数和
    数学:莫比乌斯反演-GCD计数
    关于cnblogs至github上blog的搬迁
    友链——一群dalao
    折半搜索(meet in the middle)
    关于爆搜
  • 原文地址:https://www.cnblogs.com/dingkailinux/p/9009439.html
Copyright © 2011-2022 走看看