博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
mosquitto安装、配置、测试、paho.mqtt-spy安装
阅读量:6275 次
发布时间:2019-06-22

本文共 1944 字,大约阅读时间需要 6 分钟。

  hot3.png

mosquitto是一款实现了消息推送协议 MQTT v3.1 的开源消息代理软件,提供轻量级的,支持可发布/可订阅的的消息推送模式,使设备对设备之间的短消息通信变得简单,比如现在应用广泛的低功耗传感器,手机、嵌入式计算机、微型控制器等移动设备。

(一) Ubuntu 安装 mosquitto

apt-add-repository ppa:mosquitto-dev/mosquitto-ppaapt-get updateapt-get install mosquittoapt-get install mosquitto-clients

(二) 修改/etc/mosquitto/mosquitto.conf

pid_file /var/run/mosquitto.pidpersistence truepersistence_location /var/lib/mosquitto/log_dest file /var/log/mosquitto/mosquitto.log# 将其他配置配置到此处方便管理include_dir /etc/mosquitto/conf.d

(三) mosquitto配置文件

安全配置 (/etc/mosquitto/conf.d/security.conf)

# =================================================================# Security# =================================================================# 禁止匿名用户访问allow_anonymous false# 用户密码配置文件,路径为绝对路径password_file /etc/mosquitto/pwdfile.example# 访问规则列表acl_file /etc/mosquitto/aclfile.example

acl_file (/etc/mosquitto/aclfile.example)

# 用户限制user 
# 用户可以访问的topic和权限topic [read|write]

(四) 新建用户

# 用户格式为
:
# 第一次创建用户,再次创建会覆盖原文件mosquitto_passwd -c /etc/mosquitto/pwdfile.example
# 新增用户mosquitto_passwd -U /etc/mosquitto/pwdfile.example

(五) 启动服务

service mosquitto startormosquitto -c /etc/mosquitto/mosquitto.conf -d

(六) 终端测试

订阅 mosquitto_sub -t <topic> -u <username> -P <password>

mosquitto_sub -t mqtt   -u hao -P 123456

发布 mosquitto_pub -t <topic> -m <message> -u <username> -P <password>

mosquitto_pub -t mqtt -m message  -u hao -P 123456

(七) 图形化界面测试

下载连接

启动paho.mqtt-spy

java -jar mqtt-spy-1.0.1-beta-b5-jar-with-dependencies.jar

paho.mqtt-spy

paho.mqtt-spy

(八) 创建paho.mqtt-spy桌面图标

vim ~/.local/share/applications/mqtt-spy.desktop# 添加以下内容
[Desktop Entry]Version=1.0Name=mqtt-spyComment=mqtt-spyType=ApplicationCategories=Development;Exec=java -jar 安装目录/paho.mqtt-spy/jar/mqtt-spy-1.0.1-beta-b5-jar-with-dependencies.jarTerminal=falseIcon=安装目录/paho.mqtt-spy/mqtt-spy/src/main/resources/ui/images/mqtt-spy-logo.png

转载于:https://my.oschina.net/hhjian/blog/1550460

你可能感兴趣的文章
Spring MVC中文文档翻译发布
查看>>
HUE集成
查看>>
docker centos环境部署tomcat
查看>>
python多线程编程: 使用互斥锁同步线程
查看>>
ireport报表自定义字体
查看>>
人为触发jquery ajax 中error回调方法
查看>>
JavaScript 基础(九): 条件 语句
查看>>
Linux系统固定IP配置
查看>>
jQuery-强大的jQuery选择器 (详解)[转]
查看>>
配置Quartz
查看>>
Linux 线程实现机制分析
查看>>
继承自ActionBarActivity的activity的activity theme问题
查看>>
设计模式01:简单工厂模式
查看>>
多线程讲解
查看>>
项目经理笔记一
查看>>
Hibernate一对一外键双向关联
查看>>
mac pro 入手,php环境配置总结
查看>>
MyBatis-Plus | 最简单的查询操作教程(Lambda)
查看>>
rpmfusion 的国内大学 NEU 源配置
查看>>
spring jpa 配置详解
查看>>