gpt4 book ai didi

python - 带有 SSL "Connection reset by peer"错误的 MQTT

转载 作者:太空宇宙 更新时间:2023-11-03 13:05:05 30 4
gpt4 key购买 nike

我正在使用 Raspberry Pi 向 VPS 中的 MQTT 代理发布消息。我使用了 python paho-mqtt 脚本并得到了这个错误:

Traceback (most recent call last):
File "mqttpub5.py", line 14, in <module>
client.connect("mydomain.com",8883,60)
File "/usr/local/lib/python3.4/dist-packages/paho/mqtt/client.py", line 839, in connect
return self.reconnect()
File "/usr/local/lib/python3.4/dist-packages/paho/mqtt/client.py", line 994, in reconnect
sock.do_handshake()
File "/usr/lib/python3.4/ssl.py", line 804, in do_handshake
self._sslobj.do_handshake()
ConnectionResetError: [Errno 104] Connection reset by peer

这是我的python脚本

#!/usr/bin/env python3

import paho.mqtt.client as mqtt
import time

def on_connect(client, userdata, flags, rc):
print("Connected("+str(rc)+"). Publishing Message...")


client = mqtt.Client()
client.username_pw_set("myusername","mypassword")
client.tls_set("/etc/ssl/certs/ca-bundle.crt")
client.tls_insecure_set(True)
client.connect("mydomain.com",8883,60)
client.on_connect = on_connect
client.loop_start()

count=0
while count<20:
count=count+1
client.publish("test","test no."+str(count))
time.sleep(1)

print("Message Published")
client.disconnect()

我以为是因为证书问题,但是当我使用这个命令发布时:

mosquitto_pub -h mydomain.com -t test -u myusername -P mypassword --cafile /etc/ssl/certs/ca-bundle.crt -p 8883 -m message

消息发布没有问题。我在我的 VPS 中使用 Let's Encrypt

这是我从我的 Pi 运行脚本时来自代理的日志:

1573442272: mosquitto version 1.6.7 starting
1573442272: Config loaded from /etc/mosquitto/mosquitto.conf.
1573442272: Opening ipv6 listen socket on port 1883.
1573442272: Opening ipv4 listen socket on port 1883.
1573442272: Opening ipv4 listen socket on port 8883.
1573442272: Opening ipv6 listen socket on port 8883.
1573442272: Opening websockets listen socket on port 8083.
1573442281: New connection from xx.xx.xx.xxx on port 8883.
1573442281: OpenSSL Error: error:140760FC:SSL routines:SSL23_GET_CLIENT_HELLO:unknown protocol
1573442281: Socket error on client <unknown>, disconnecting.

我在另一台计算机上使用了相同的脚本,它运行没有问题。

如有任何帮助,我们将不胜感激。谢谢

最佳答案

看起来解决方案只是升级。当错误出现时,我有 Raspbian Jessie 和 Mosquitto 版本 1.3.4。我将 Raspbian 升级为 Stretch with Mosquitto version 1.4.10,问题消失了

关于python - 带有 SSL "Connection reset by peer"错误的 MQTT,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58761225/

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