我想使用mosquitto库使用MQTT协议.
首先,我想做一些安装mosquitto-clients的测试
sudo apt-get install mosquitto-clients
该程序提供了两种“方法”:
> mosquitto_pub
> mosquitto_sub
mosquitto_sub -d -t newtopic/test
使用默认主机/端口[localhost / 1883].
我获得:
Error: Connection refused
过于通用,因为错误..任何人都可以帮助我吗?
可能是防火墙问题?在这种情况下,我该如何检查这是否是问题?
我正在使用linux ubuntu(3.8.0-42-generic#62~minision1-Ubuntu)
使用libmosquitto编写自定义程序的相同行为.
最佳答案
mosquitto_pub / sub的默认主机:端口组合是localhost:1883.如果您没有在本地计算机上运行代理,那么当然它将无法连接.
原文链接:https://www.f2er.com/linux/440321.html解决方案是在本地计算机上运行代理,或者告诉实用程序在哪里连接.例如:
mosquitto_sub -t newtopic/test -h test.mosquitto.org