systemLog: # verbosity: 0 #日志等级,0-5,默认0 # quiet: false #限制日志输出, # traceAllExceptions: true #详细错误日志 # syslogFacility: user #记录到操作系统的日志级别,指定的值必须是操作系统支持的,并且要以--syslog启动 path: /Users/mhq/projects/db/mongo/logs/log.txt #日志路径。 logAppend: false #启动时,日志追加在已有日志文件内还是备份旧日志后,创建新文件记录日志, 默认false logRotate: rename #rename/reopen。rename,重命名旧日志文件,创建新文件记录;reopen,重新打开旧日志记录,需logAppend为true destination: file #日志输出方式。file/syslog,如果是file,需指定path,默认是输出到标准输出流中 timeStampFormat: iso8601-local #日志日期格式。ctime/iso8601-utc/iso8601-local, 默认iso8601-local # component: #各组件的日志级别 # accessControl: # verbosity: <int> # command: # verbosity: <int> processManagement: fork: true #以守护进程运行 默认false # pidFilePath: <string> #PID 文件位置 net: port: 27017 #监听端口,默认27017 bindIp: 127.0.0.1 #绑定监听的ip,deb和rpm包里有默认的配置文件(/etc/mongod.conf)里面默认配置为127.0.0.1,若不限制IP,务必确保认证安全,多个Ip用逗号分隔 maxIncomingConnections: 65536 #最大连接数,可接受的连接数还受限于操作系统配置的最大连接数 wireObjectCheck: true #校验客户端的请求,防止错误的或无效BSON插入,多层文档嵌套的对象会有轻微性能影响,默认true ipv6: false #是否启用ipv6,3.0以上版本始终开启 unixDomainSocket: #unix socket监听,仅适用于基于unix的系统 enabled: false #默认true pathPrefix: /tmp #路径前缀,默认/temp filePermissions: 0700 #文件权限 默认0700 http: #警告 确保生产环境禁用HTTP status接口、REST API以及JSON API以防止数据暴露和漏洞攻击 enabled: false #是否启用HTTP接口、启用会增加网络暴露。3.2版本后停止使用HTTP interface JSONPEnabled: false #JSONP的HTTP接口 RESTInterfaceEnabled: false #REST API接口 # ssl: #估计用不到,所以没有自己看 # sslOnNormalPorts: <boolean> # deprecated since 2.6 # mode: <string> # PEMKeyFile: <string> # PEMKeyPassword: <string> # clusterFile: <string> # clusterPassword: <string> # CAFile: <string> # CRLFile: <string> # allowConnectionsWithoutCertificates: <boolean> # allowInvalidCertificates: <boolean> # allowInvalidHostnames: <boolean> # disabledProtocols: <string> # FIPSMode: <boolean> security: authorization: enabled # enabled/disabled #开启客户端认证 javascriptEnabled: true #启用或禁用服务器端JavaScript执行 # keyFile: <string> #密钥路径 # clusterAuthMode: <string> #集群认证方式 # enableEncryption: <boolean> # encryptionCipherMode: <string> # encryptionKeyFile: <string> # kmip: # keyIdentifier: <string> # rotateMasterKey: <boolean> # serverName: <string> # port: <string> # clientCertificateFile: <string> # clientCertificatePassword: <string> # serverCAFile: <string> # sasl: # hostName: <string> # serviceName: <string> # saslauthdSocketPath: <string> # setParameter: #设置参数 # <parameter1>: <value1> # <parameter2>: <value2> storage: dbPath: /Users/mhq/projects/db/mongo/test/ #数据库,默认/data/db,如果使用软件包管理安装的查看/etc/mongod.conf indexBuildRetry: true #重启时,重建不完整的索引 # repairPath: <string> #--repair操作时的临时工作目录,默认为dbPath下的一个_tmp_repairDatabase_<num>的目录 journal: enabled: true #启动journal,64位系统默认开启,32位默认关闭 # commitIntervalMs: <num> #journal操作的最大时间间隔,默认100或30 directoryPerDB: false #使用单独的目录来存储每个数据库的数据,默认false,如果需要更改,要备份数据,删除掉dbPath下的文件,重建后导入数据 # syncPeriodSecs: 60 #使用fsync来将数据写入磁盘的延迟时间量,建议使用默认值 engine: wiredTiger #存储引擎,mmapv1/wiredTiger/inMemory 默认wiredTiger # mmapv1: # preallocDataFiles: <boolean> # nsSize: <int> # quota: # enforced: <boolean> # maxFilesPerDB: <int> # smallFiles: <boolean> # journal: # debugFlags: <int> # commitIntervalMs: <num> # wiredTiger: # engineConfig: # cacheSizeGB: <number> #缓存大小 # journalCompressor: <string> #数据压缩格式 none/snappy/zlib # directoryForIndexes: <boolean> #将索引和集合存储在单独的子目录下,默认false # collectionConfig: # blockCompressor: <string> #集合数据压缩格式 # indexConfig: # prefixCompression: <boolean> #启用索引的前缀压缩 # inMemory: # engineConfig: # inMemorySizeGB: <number> operationProfiling: #性能分析 slowOpThresholdMs: 100 #认定为查询速度缓慢的时间阈值,超过该时间的查询即为缓慢查询,会被记录到日志中, 默认100 mode: off #operationProfiling模式 off/slowOp/all 默认off # replication: #复制集相关 # oplogSizeMB: <int> # replSetName: <string> # secondaryIndexPrefetch: <string> # enableMajorityReadConcern: <boolean> # sharding: #集群分片相关 # clusterRole: <string> # archiveMovedChunks: <boolean> # auditLog: # destination: <string> # format: <string> # path: <string> # filter: <string> # snmp: # subagent: <boolean> #当设置为true,SNMP作为代理运行 # master: <boolean> #当设置为true,SNMP作为主服务器运行 # basisTech: # rootDirectory: <string>
以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,也希望大家多多支持 码农网
猜你喜欢:本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
商业模式新生代
亚历山大•奥斯特瓦德 (Alexander Osterwalder)、伊夫•皮尼厄 (Yves Pigneur) / 王帅、毛心宇、严威 / 机械工业出版社 / 2011-8-15 / 88.00元
中文官网:http://www.bizmodel.org 内容简介:当你愉快的看完第一章:商业模式画布,赫然发现这些构成要素全 都交织成一幅清晰的图像在脑海中呈现,它们如何互相影响、如何交互作用全都历历在目。利用商业模式画布分析瑞士银行、Google、Lego、Wii 、Apple等跨国企业,归纳出三种不同的产业 模式,也涵括新近的热门现象免费效应及长尾理论等。在这些有趣的例子中,我们不仅更......一起来看看 《商业模式新生代》 这本书的介绍吧!
JS 压缩/解压工具
在线压缩/解压 JS 代码
HEX HSV 转换工具
HEX HSV 互换工具