linux – mosquitto-client获得拒绝连接

前端之家收集整理的这篇文章主要介绍了linux – mosquitto-client获得拒绝连接前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我想使用mosquitto库使用MQTT协议.

首先,我想做一些安装mosquitto-clients的测试

 sudo apt-get install mosquitto-clients

该程序提供了两种“方法”:

> mosquitto_pub
> mosquitto_sub

按照this说明我正在尝试提交新主题

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.如果您没有在本地计算机上运行代理,那么当然它将无法连接.

解决方案是在本地计算机上运行代理,或者告诉实用程序在哪里连接.例如:

mosquitto_sub -t newtopic/test -h test.mosquitto.org
原文链接:https://www.f2er.com/linux/440321.html

猜你在找的Linux相关文章