随笔分类 -  mqtt

摘要:MQTT协议是广泛应用的物联网协议,使用测试MQTT协议需要MQTT的代理。有两种方法使用MQTT服务, 一是租用现成的MQTT服务器,如阿里云,百度云,华为云等公用的云平台提供的MQTT服务, 使用公用的MQTT服务器的好处是省事,但如果仅仅用于测试学习还需要注册帐号,灵活性差些, 有的平台还需要 阅读全文
posted @ 2020-12-23 23:15 anobscureretreat 阅读(2254) 评论(0) 推荐(0) 编辑
摘要:使用储存库安装 EMQ X 安装所需要的依赖包 sudo yum install -y yum-utils device-mapper-persistent-data lvm2 使用以下命令设置稳定存储库,以 CentOS7 为例 sudo yum-config-manager --add-repo 阅读全文
posted @ 2020-12-23 23:09 anobscureretreat 阅读(995) 评论(0) 推荐(0) 编辑
摘要:code import paho.mqtt.client as mqtt import time import sys HOST = “1.1.1.1" PORT = 1883 def on_connect(client, userdata, flags, rc): print("Connected 阅读全文
posted @ 2020-12-23 00:42 anobscureretreat 阅读(394) 评论(0) 推荐(0) 编辑
摘要:安装库 pip3 install paho-mqtt 发布话题 import paho.mqtt.client as mqtt import time import sys HOST = "103.77.337.89" PORT = 1883 def on_connect(client, userd 阅读全文
posted @ 2020-08-19 12:45 anobscureretreat 阅读(1080) 评论(0) 推荐(0) 编辑
摘要:code [root@CwKVmz135893 ~]# emqx_ctl plugins list Plugin(emqx_auth_clientid, version=4.0.5, description=EMQ X Authentication with ClientId/Password, a 阅读全文
posted @ 2020-08-19 12:40 anobscureretreat 阅读(165) 评论(0) 推荐(0) 编辑
摘要:官网 https://www.emqx.io/cn/ 下载页面(https://www.emqx.io/cn/downloads) 解压 unzip emqx-centos7-v4.0.5.zip 进入目录 cd emqx/bin 阅读全文
posted @ 2020-08-19 12:39 anobscureretreat 阅读(1662) 评论(0) 推荐(0) 编辑
摘要:https://github.com/emqx/MQTTX/releases 阅读全文
posted @ 2020-08-19 10:52 anobscureretreat 阅读(372) 评论(0) 推荐(0) 编辑