mongoDB 参数配置

mongodb配置文件选项
 Allowed options:
 
General options:
  -h [ --help ]             show this usage information
  --version                 show version information
  -f [ --config ] arg       configuration file specifying additional options
  --port arg                specify port number
  --bind_ip arg             local ip address to bind listener - all local ips 
                            bound by default
  -v [ --verbose ]          be more verbose (include multiple times for more 
                            verbosity e.g. -vvvvv)
  --dbpath arg (=/data/db/) directory for datafiles    指定数据存放目录
  --quiet                   quieter output   静默模式
  --logpath arg             file to send all output to instead of stdout   指定日志存放目录
  --logappend               appnd to logpath instead of over-writing  指定日志是以追加还是以覆盖的方式写入日志文件
  --fork                    fork server process   以创建子进程的方式运行
  --cpu                     periodically show cpu and iowait utilization  周期性的显示cpu和io的使用情况
  --noauth                  run without security  无认证模式运行
  --auth                    run with security  认证模式运行
  --objcheck                inspect client data for validity on receipt  检查客户端输入数据的有效性检查
  --quota                   enable db quota management   开始数据库配额的管理
  --quotaFiles arg          number of files allower per db, requires --quota  规定每个数据库允许的文件数
  --appsrvpath arg          root directory for the babble app server  
  --nocursors               diagnostic/debugging option  调试诊断选项
  --nohints                 ignore query hints  忽略查询命中率
  --nohttpinterface         disable http interface  关闭http接口,默认是28017
  --noscripting             disable scripting engine  关闭脚本引擎
  --noprealloc              disable data file preallocation  关闭数据库文件大小预分配
  --smallfiles              use a smaller default file size  使用较小的默认文件大小
  --nssize arg (=16)        .ns file size (in MB) for new databases 新数据库ns文件的默认大小
  --diaglog arg             0=off 1=W 2=R 3=both 7=W+some reads 提供的方式,是只读,只写,还是读写都行,还是主要写+部分的读模式
  --sysinfo                 print some diagnostic system information 打印系统诊断信息
  --upgrade                 upgrade db if needed  如果需要就更新数据库
  --repair                  run repair on all dbs  修复所有的数据库
  --notablescan             do not allow table scans  不运行表扫描
  --syncdelay arg (=60)     seconds between disk syncs (0 for never)  系统同步刷新磁盘的时间,默认是60s
 
Replication options:
  --master              master mode 主复制模式
  --slave               slave mode  从复制模式
  --source arg          when slave: specify master as <server:port> 当为从时,指定主的地址和端口
  --only arg            when slave: specify a single database to replicate 当为从时,指定需要从主复制的单一库
  --pairwith arg        address of server to pair with 
  --arbiter arg         address of arbiter server  仲裁服务器,在主主中和pair中用到
  --autoresync          automatically resync if slave data is stale 自动同步从的数据
  --oplogSize arg       size limit (in MB) for op log 指定操作日志的大小
  --opIdMem arg         size limit (in bytes) for in memory storage of op ids指定存储操作日志的内存大小
 
Sharding options:
  --configsvr           declare this is a config db of a cluster 指定shard中的配置服务器
  --shardsvr            declare this is a shard db of a cluster 指定shard服务器
### MongoDB 连接参数配置方法及示例 在 Spring Boot 应用中,通过使用 Spring Data MongoDB 可以轻松实现与 MongoDB 的集成以及连接池的配置。以下是详细的说明和代码示例。 #### 一、添加 Maven 或 Gradle 依赖 为了使 Spring Boot 能够与 MongoDB 集成,需在项目的构建文件中引入必要的依赖项。对于 Maven 用户,可以在 `pom.xml` 文件中添加以下内容: ```xml <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-mongodb</artifactId> </dependency> ``` Gradle 用户则可以将以下行加入到 `build.gradle` 中: ```gradle implementation 'org.springframework.boot:spring-boot-starter-data-mongodb' ``` 此操作确保项目具备访问 MongoDB 所需的功能模块[^2]。 #### 二、配置 MongoDB 连接信息 MongoDB 的连接字符串通常定义在 `application.properties` 或 `application.yml` 文件中。下面是一个基于 YAML 格式的配置实例: ```yaml spring: data: mongodb: uri: mongodb://username:password@localhost:27017/databaseName?authSource=admin&maxPoolSize=10&w=majority ``` 上述 URI 参数解释如下: - **mongodb://**: 协议头表明这是一个 MongoDB 数据库链接。 - **username:password@**: 提供数据库认证所需的用户名和密码。 - **localhost:27017**: 表明服务器地址及其端口号,默认情况下 MongoDB 使用的是 27017 端口。 - **databaseName**: 替换为目标数据库名称。 - **authSource=admin**: 指定用于验证用户的管理数据库名。 - **maxPoolSize=10**: 设置最大并发连接数量为 10。 - **w=majority**: 定义写关注级别,表示大多数节点确认后才认为写入成功[^3]。 如果采用 `.properties` 文件,则可按如下方式书写: ```properties spring.data.mongodb.uri=mongodb://username:password@localhost:27017/databaseName?authSource=admin&maxPoolSize=10&w=majority ``` #### 三、自定义连接池设置 (高级选项) 除了基本的连接字符串外,还可以进一步调整连接池的行为。这同样是在 `application.properties` 或 `application.yml` 文件里完成。例如增加超时时间或者最小空闲连接数等属性: YAML 版本: ```yaml spring: data: mongodb: options: min-pool-size: 5 max-wait-time-ms: 60000 socket-timeout-ms: 30000 connect-timeout-ms: 20000 ``` Properties 版本: ```properties spring.data.mongodb.options.min-pool-size=5 spring.data.mongodb.options.max-wait-time-ms=60000 spring.data.mongodb.options.socket-timeout-ms=30000 spring.data.mongodb.options.connect-timeout-ms=20000 ``` 这些额外的参数允许开发者更精细地控制客户端行为,从而优化应用程序性能[^1]。 --- ###
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值