天天看點

樹莓派MQTT服務遠端測試MQTT.fx

陳拓 2021.04.07/2021.04.07

1. 概述

在《樹莓派安裝Mosquitto MQTT服務》

https://zhuanlan.zhihu.com/p/359395794

https://blog.csdn.net/chentuo2000?spm=1000.2115.3001.5343

一文中我們已經在樹莓派上安裝了mosquitto MQTT服務,并進行了本地測試。在此基礎上,本文進行遠端測試。

遠端測試在PC上進行,需要安裝工具MQTTfx。安裝見《MQTTfx連接配接物聯網雲平台》

https://zhuanlan.zhihu.com/p/101104351

https://blog.csdn.net/chentuo2000/article/details/104313968

2. 本地測試

2.1 啟動mosquitto

  • 檢視mosquitto狀态

sudo service mosquitto status

樹莓派MQTT服務遠端測試MQTT.fx

可以看到服務已經啟動了:active (running)。

按q鍵退出。

如果服務未啟動:inactive (dead),可以手動啟動服務。

  • 手動啟動服務

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

樹莓派MQTT服務遠端測試MQTT.fx

2.2 本地測試

  • 訂閱消息

mosquitto_sub -p 1883 -u ct -P xxxxxxxx -t emqtt/my_topic

樹莓派MQTT服務遠端測試MQTT.fx

等待接收消息。

emqtt/my_topic是我訂閱的消息主題,随便起一個主題名字,隻要和下面釋出的主題名字一緻就行。

  • 再打開1個終端釋出消息

mosquitto_pub -p 1883 -u ct -P xxxxxxxx -t emqtt/my_topic -m "Hello!"

樹莓派MQTT服務遠端測試MQTT.fx

檢視訂閱端接收到的消息:

樹莓派MQTT服務遠端測試MQTT.fx

3. 用MQTT.fx遠端測試

3.1 安裝MQTT.fx

見《MQTTfx連接配接物聯網雲平台》

https://zhuanlan.zhihu.com/p/101104351

https://blog.csdn.net/chentuo2000/article/details/104313968

3.2 打開MQTT.fx

樹莓派MQTT服務遠端測試MQTT.fx

3.3 設定MQTT.fx

點選齒輪圖示開始設定。

  • MQTT Broker Profile Settings設定
樹莓派MQTT服務遠端測試MQTT.fx

點選Generate建立一個Client ID。

如果你有IP位址,替換raspberrypi.local。

  • General設定
樹莓派MQTT服務遠端測試MQTT.fx
  • User Credentials設定
樹莓派MQTT服務遠端測試MQTT.fx

點選OK,建立Profile。

3.4 連接配接MQTT伺服器

點選Connect連接配接MQTT伺服器

樹莓派MQTT服務遠端測試MQTT.fx

連接配接成功。

3.5 用MQTTfx測試釋出消息

  • 填寫釋出主題和要釋出的消息
樹莓派MQTT服務遠端測試MQTT.fx

點選Publish。

  • 在樹莓派上檢視訂閱的消息
樹莓派MQTT服務遠端測試MQTT.fx

3.6 用MQTTfx測試訂閱消息

  • 選擇Subscribe
樹莓派MQTT服務遠端測試MQTT.fx

填寫主題,點選Subscribe,等待接收消息。

  • 在樹莓派釋出消息消息

mosquitto_pub -p 1883 -u ct -P xxxxxxxx -t emqtt/my_topic -m "This mesage is published by Raspberry pi."

樹莓派MQTT服務遠端測試MQTT.fx
  • 檢視接收到的消息
樹莓派MQTT服務遠端測試MQTT.fx

樹莓派的訂閱視窗也同時收到消息:

樹莓派MQTT服務遠端測試MQTT.fx

附錄:Mosquitto的配置參數說明

# =================================================================

# General configuration

# =================================================================

# 用戶端心跳的間隔時間

#retry_interval 20

# 系統狀态的重新整理時間

#sys_interval 10

# 系統資源的回收時間,0表示盡快處理

#store_clean_interval 10

# 服務程序的PID

#pid_file /var/run/mosquitto.pid

# 服務程序的系統使用者

#user mosquitto

# 用戶端心跳消息的最大并發數

#max_inflight_messages 10

# 用戶端心跳消息緩存隊列

#max_queued_messages 100

# 用于設定用戶端長連接配接的過期時間,預設永不過期

#persistent_client_expiration

# =================================================================

# Default listener

# =================================================================

# 服務綁定的IP位址

#bind_address

# 服務綁定的端口号

#port 1883

# 允許的最大連接配接數,-1表示沒有限制

#max_connections -1

# cafile:CA憑證檔案

# capath:CA憑證目錄

# certfile:PEM證書檔案

# keyfile:PEM密鑰檔案

#cafile

#capath

#certfile

#keyfile

# 必須提供證書以保證資料安全性

#require_certificate false

# 若require_certificate值為true,use_identity_as_username也必須為true

#use_identity_as_username false

# 啟用PSK(Pre-shared-key)支援

#psk_hint

# SSL/TSL加密算法,可以使用“openssl ciphers”指令擷取

# as the output of that command.

#ciphers

# =================================================================

# Persistence

# =================================================================

# 消息自動儲存的間隔時間

#autosave_interval 1800

# 消息自動儲存功能的開關

#autosave_on_changes false

# 持久化功能的開關

persistence true

# 持久化DB檔案

#persistence_file mosquitto.db

# 持久化DB檔案目錄

#persistence_location /var/lib/mosquitto/

# =================================================================

# Logging

# =================================================================

# 4種日志模式:stdout、stderr、syslog、topic

# none 則表示不記日志,此配置可以提升些許性能

log_dest none

# 選擇日志的級别(可設定多項)

#log_type error

#log_type warning

#log_type notice

#log_type information

# 是否記錄用戶端連接配接資訊

#connection_messages true

# 是否記錄日志時間

#log_timestamp true

# =================================================================

# Security

# =================================================================

# 用戶端ID的字首限制,可用于保證安全性

#clientid_prefixes

# 允許匿名使用者

#allow_anonymous true

# 使用者/密碼檔案,預設格式:username:password

#password_file

# PSK格式密碼檔案,預設格式:identity:key

#psk_file

# pattern write sensor/%u/data

# ACL權限配置,常用文法如下:

# 使用者限制:user <username>

# 話題限制:topic [read|write] <topic>

# 正則限制:pattern write sensor/%u/data

#acl_file

# =================================================================

# Bridges

# =================================================================

# 允許服務之間使用“橋接”模式(可用于分布式部署)

#connection <name>

#address <host>[:<port>]

#topic <topic> [[[out | in | both] qos-level] local-prefix remote-prefix]

# 設定橋接的用戶端ID

#clientid

# 橋接斷開時,是否清除遠端伺服器中的消息

#cleansession false

# 是否釋出橋接的狀态資訊

#notifications true

# 設定橋接模式下,消息将會釋出到的話題位址

# $SYS/broker/connection/<clientid>/state

#notification_topic

# 設定橋接的keepalive數值

#keepalive_interval 60

# 橋接模式,目前有三種:automatic、lazy、once

#start_type automatic

# 橋接模式automatic的逾時時間

#restart_timeout 30

# 橋接模式lazy的逾時時間

#idle_timeout 60

# 橋接用戶端的使用者名

#username

# 橋接用戶端的密碼

#password

# bridge_cafile:橋接用戶端的CA憑證檔案

# bridge_capath:橋接用戶端的CA憑證目錄

# bridge_certfile:橋接用戶端的PEM證書檔案

# bridge_keyfile:橋接用戶端的PEM密鑰檔案

#bridge_cafile

#bridge_capath

#bridge_certfile

#bridge_keyfile

# 自己的配置可以放到以下目錄中

include_dir /etc/mosquitto/conf.d