IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 嵌入式 -> MQTT简介 -> 正文阅读

[嵌入式]MQTT简介

在这里插入图片描述
https://mqtt.org/

mqtt协议说明

MQTT Version 5.0
https://docs.oasis-open.org/mqtt/mqtt/v5.0/mqtt-v5.0.html
broker的实现有很多,参考:
https://mqtt.org/software/

流行的有:

  • Mosquitto,C实现,单机、带客户端
    Mosquitto is an open source implementation of a server for version 5.0, 3.1.1, and 3.1 of the MQTT protocol. It also includes a C and C++ client library, and the mosquitto_pub and mosquitto_sub utilities for publishing and subscribing.
    在这里插入图片描述

  • EMQX,erlang实现,可扩展、分布式
    EMQX broker is a fully open source, highly scalable, highly available distributed
    MQTT messaging broker for IoT, M2M and Mobile applications that can handle tens of millions of concurrent clients.

  • Moquette,java实现,可在工程里嵌入(式)
    Moquette aims to be a MQTT compliant broker. The broker supports QoS 0, QoS 1 and QoS 2.
    Its designed to be evented, uses Netty for the protocol encoding and decoding part.

Mosquitto

eclipse对mqtt broker的官方实现,An open source MQTT broker
https://mosquitto.org/

  • The server listens on the following ports:

1883 : MQTT, unencrypted, unauthenticated
1884 : MQTT, unencrypted, authenticated
8883 : MQTT, encrypted, unauthenticated
8884 : MQTT, encrypted, client certificate required
8885 : MQTT, encrypted, authenticated
8886 : MQTT, encrypted, unauthenticated
8887 : MQTT, encrypted, server certificate deliberately expired
8080 : MQTT over WebSockets, unencrypted, unauthenticated
8081 : MQTT over WebSockets, encrypted, unauthenticated
8090 : MQTT over WebSockets, unencrypted, authenticated
8091 : MQTT over WebSockets, encrypted, authenticated

cedalo 官方管理后台
用于物联网和流处理的实时消息代理和电子表格
https://cedalo.com/

EMQX

mqtt协议的第三方实现,有开源版和企业版,使用广泛
https://www.emqx.com/en/try?product=broker
https://github.com/emqx
有k8s的empx-operator的实现

快速上手

on Mac

# 安装mosquitto
brew install mosquitto
# 启动
brew services start mosquitto
# 测试
#订阅消息
mosquitto_sub -t 'test/topic' -v
#发消息
mosquitto_pub -t 'test/topic' -m 'hello world'

在这里插入图片描述

EMQX

  • EMQX Docker 镜像安装
docker run -d --name emqx -p 1883:1883 -p 8081:8081 -p 8083:8083 -p 8883:8883 -p 8084:8084 -p 18083:18083 emqx/emqx

控制台:http://localhost:18083/#/,默认账密admin/public

  • 使用端口:
    8883端口(ssl),最大连接数10万
    1883端口(tcp):最大连接数100万
    在这里插入图片描述
  • 测试
#订阅消息
mosquitto_sub -p 1883 -t 'test/topic' -v
#发消息
mosquitto_pub -p 1883 -t 'test/topic' -m 'hello world'

在这里插入图片描述

参考:
MQTT数据结构说明:http://www.steves-internet-guide.com/mqtt-protocol-messages-overview/

  嵌入式 最新文章
基于高精度单片机开发红外测温仪方案
89C51单片机与DAC0832
基于51单片机宠物自动投料喂食器控制系统仿
《痞子衡嵌入式半月刊》 第 68 期
多思计组实验实验七 简单模型机实验
CSC7720
启明智显分享| ESP32学习笔记参考--PWM(脉冲
STM32初探
STM32 总结
【STM32】CubeMX例程四---定时器中断(附工
上一篇文章      下一篇文章      查看所有文章
加:2022-04-28 12:02:29  更:2022-04-28 12:03:30 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/26 3:57:09-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码