使用mosquitto搭建mqtt broker

2023-09-28

1.2 使用mosquitto在windows下创建一个mqtt broker
step1)使能mosquitto服务

step2)配置mosquitto

MQTT协议端口号

listener 1883

启用WebSocket支持

listener 9001
protocol websockets

订阅主题持久化

persistence true
persistence_location D:softwaremosquittodata

开启日志记录

log_dest file D:softwaremosquittomosquitto.log
log_type all

开启密码验证

password_file D:softwaremosquittopwfile.example
allow_anonymous false
step3)创建访问mqtt broker的账户
mosquitto_passwd.exe用于生成连接mqtt broker的用户名和密码,下面的命令表示向pwfile.example文件追加一个“myAccount”账户,在client中可以用这个账户和密码登录,否则会报验证失败的错误。

.mosquitto_passwd.exe .pwfile.example myAccount
step4)启动mqtt broker
执行下面的命令可以启动一个mqtt服务器

.mosquitto.exe -v -c .configmosquitto.conf

二、mqtt网络包分析

使用mosquitto搭建mqtt broker (https://ic.work/) 物联网 第1张

文章推荐

相关推荐