change - broker yml 文件修改

pull/1/head
Wen JY 1 year ago
parent dccb4e52fb
commit 2eee79774a

@ -1,54 +0,0 @@
server:
port: 30013
spring:
# redis 配置
redis:
# 地址
host: huawei-redis
# 端口默认为6379
port: 6379
# 密码
password: admin123
# 连接超时时间
timeout: 10s
lettuce:
pool:
# 连接池中的最小空闲连接
min-idle: 0
# 连接池中的最大空闲连接
max-idle: 8
# 连接池的最大数据库连接数
max-active: 8
# 连接池最大阻塞等待时间(使用负值表示没有限制)
max-wait: -1ms
mqtt:
server:
enabled: true # 是否开启服务端默认true
# ip: 0.0.0.0 # 服务端 ip 默认为空0.0.0.0,建议不要设置
port: 1883 # 端口默认1883
name: Mqtt-Broker # 名称默认Mica-Mqtt-Server
buffer-allocator: HEAP # 堆内存和堆外内存,默认:堆内存
heartbeat-timeout: 120000 # 心跳超时,单位毫秒,默认: 1000 * 120
read-buffer-size: 8KB # 接收数据的 buffer size默认8k
max-bytes-in-message: 10MB # 消息解析最大 bytes 长度默认10M
auth:
enable: false # 是否开启 mqtt 认证
username: mica # mqtt 认证用户名
password: mica # mqtt 认证密码
debug: true # 如果开启 prometheus 指标收集建议关闭
stat-enable: true # 开启指标收集debug 和 prometheus 开启时需要打开,默认开启,关闭节省内存
web-port: 8083 # http、websocket 端口默认8083
websocket-enable: true # 是否开启 websocket默认 true
http-enable: false # 是否开启 http api默认 false
http-basic-auth:
enable: false # 是否开启 http basic auth默认 false
username: mica # http basic auth 用户名
password: mica # http basic auth 密码
ssl: # mqtt tcp ssl 认证
enabled: false # 是否开启 ssl 认证2.1.0 开始支持双向认证
keystore-path: # 必须参数ssl keystore 目录,支持 classpath:/ 路径。
keystore-pass: # 必选参数ssl keystore 密码
truststore-path: # 可选参数ssl 双向认证 truststore 目录,支持 classpath:/ 路径。
truststore-pass: # 可选参数ssl 双向认证 truststore 密码
client-auth: none # 是否需要客户端认证双向认证默认NONE不需要

@ -1,33 +0,0 @@
spring:
application:
name: Mqtt-Broker
profiles:
active: server
springdoc:
swagger-ui:
urls:
- name: swagger
url: /v3/api-docs
# actuator management
management:
info:
defaults:
enabled: true
metrics:
tags:
application: ${spring.application.name}
endpoint:
health:
show-details: ALWAYS
prometheus:
enabled: true
endpoints:
web:
exposure:
include: '*'
logging:
level:
root: info
server: info # t-io ???????
org.tio: info # t-io ???????
Loading…
Cancel
Save