MQTT服务器搭建+MQTT.fx测试+Wireshark抓包
Posted p935074243
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了MQTT服务器搭建+MQTT.fx测试+Wireshark抓包相关的知识,希望对你有一定的参考价值。
MQTT服务器搭建+MQTT.fx测试+Wireshark抓包
搭建MQTT服务器
需求项目 | 实际使用 | 其他替代品 |
---|---|---|
MQTT服务器软件 | mosquitto | / |
服务器 | Ubuntu系统 | 阿里云,腾讯云等 |
远程登录软件 | Windows MQTT.fx | 苹果MQTTool工具 |
抓包 | wireshark | / |
步骤
1、安装
sudo apt-get update #更新软件仓库列表
sudo apt-get install mosquitto #安装mosquitto
2、试运行
sudo service mosquitto status #查看运行状态
sudo service mosquitto start #启动服务
sudo service mosquitto stop #停止服务
安装成功的状态
3、添加和修改配置
(1)首先停止服务:
sudo service mosquitto stop
(2)在/etc/mosquitto/conf.d目录下,新建myconfig.conf配置文件:
sudo touch myconfig.conf
(3)vim myconfig.conf,粘入下面这些
#-------------------------------------------
# 关闭匿名访问,客户端必须使用用户名
allow_anonymous false
#指定 用户名-密码 文件
password_file /etc/mosquitto/pwfile.txt
#--------------------------------------------
4、创建一个MQTT服务器账户
假设用户名为:user1
在命令行运行:
sudo mosquitto_passwd -c /etc/mosquitto/pwfile.txt user1
回车后连续输入2次用户密码即可
5、重新启动mosquitto
sudo service mosquitto start #启动服务
测试mosquitto
1、 下载MQTT.fx
2、 配置MQTT.fx
参考自:
https://baijiahao.baidu.com/s?id=1610057452592802735&wfr=spider&for=pc
https://www.cnblogs.com/lulipro/p/10914482.html
以上是关于MQTT服务器搭建+MQTT.fx测试+Wireshark抓包的主要内容,如果未能解决你的问题,请参考以下文章
55 Ubuntu搭建mosquitto并使用MQTT.fx测试问题记录