gpt4 book ai didi

mqtt - 将本地 Mosquitto MQTT 代理连接到 Google Cloud IoT

转载 作者:行者123 更新时间:2023-12-05 06:29:40 28 4
gpt4 key购买 nike

在我当前的设置中,我使用 ebusd 从我的供暖系统读取数据,该系统运行良好。在下一步中,我想将此数据发送到 Google IoT 核心设备。不幸的是,ebusd 不支持在外部设置 clientid

为了避免这种情况,我安装了一个本地 Mosquitto Broker,它在我的 Raspberry Pi 中接受不安全的消息,并将它们桥接到 Google IoT Core Broker。这是我配置本地 Mosquitto Broker 的方式:

# Place your local configuration in /etc/mosquitto/conf.d/
#
# A full description of the configuration file is at
# /usr/share/doc/mosquitto/examples/mosquitto.conf.example

pid_file /var/run/mosquitto.pid

persistence true
persistence_location /var/lib/mosquitto/

log_type all
log_dest file /var/log/mosquitto/mosquitto.log

# Goolge IoT Core Configuration

connection bridge-to-gcp

address mqtt.googleapis.com:8883

bridge_attempt_unsubscribe false
bridge_certfile /home/pi/certificates/rsa_cert.pem
bridge_keyfile /home/pi/certificates/rsa_private.pem
bridge_cafile /home/pi/certificates/roots.pem
bridge_protocol_version mqttv311
bridge_insecure false

tls_version tlsv1.2
try_private true

start_type automatic
cleansession true
notifications false

local_clientid local-to-remote-gcp-bridge

remote_username unused
remote_password <JWT Token generated using jwt.io>
remote_clientid projects/project-251313/locations/europe-west1/registries/prot/devices/ebusd12345

topic # both

include_dir /etc/mosquitto/conf.d

尽管此设置适用于 AWS IoT 和 Google Cloud IoT,但我得到了

1542622526: Connecting bridge bridge-to-gcp (mqtt.googleapis.com:8883)
1542622526: Bridge projects/project-251313/locations/europe-west1/registries/prot/devices/ebusd12345 sending CONNECT
1542622526: Socket error on client local.projects/project-251313/locations/europe-west1/registries/prot/devices/ebusd12345, disconnecting.

谷歌搜索一段时间后,我找到了这个博客(参见 http://community.onion.io/topic/2858/omega-onion-connecting-to-cloud-cloud-iot/2),其中指出 Google Cloud IoT Core 不支持“子代理”的连接,但我没有找到第二个声明相同的声明。

有人可以确认我正在尝试做一些不可能的事情,或者请帮助正确配置代理吗?

最佳答案

我联系了该博客的作者和其他从事 Cloud IoT Core 工作的人,不幸的是,目前似乎确实不支持 MQTT 桥接。与此同时,您似乎正在与 Github 上的 ebusd 所有者联系以添加可配置的 clientid 功能,这将是一个很好的临时修复。

话虽如此,我们有一项即将进入测试版的功能可以帮助您专门解决此类问题,敬请期待!

关于mqtt - 将本地 Mosquitto MQTT 代理连接到 Google Cloud IoT,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53372656/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com