我已经使用brew通过
安装了Mosquitto brew install mosquitto
并测试了它是否正在使用
brew services list
输出
Name Status User Plist
mongodb stopped
mosquitto started amit /Users/amit/Library/LaunchAgents/homebrew.mxcl.mosquitto.plist
postgresql stopped
tomcat stopped
但是,当我尝试从this回答以下问题时,找不到命令
mosquitto_sub -v -t 'test/topic'
-bash: mosquitto_sub: command not found
我是否需要安装其他东西才能工作?
此外,我尝试使用python脚本连接到代理,但收到连接拒绝消息
client = mqtt.Client()
client.on_connect = on_connect_handler
client.on_message = on_message_handler
client.connect("localhost", 1883, 60)
client.loop_forever()
编辑1
我解决了第一个问题,即无法使用mosquitto_sub
使用brew link mosquitto
。
但是我仍然拒绝连接。
答案 0 :(得分:3)
在谷歌搜索并尝试了不同的方法之后,我已经找到了这两个问题的答案。
brew link mosquitto
解决了无法启动发布者和订阅者客户端的第一个问题。要查看Brew链接的工作方式,您可以查看this帖子。brew services start mosquitto -d
即可。我不知道为什么这会起作用而不是开始正常的过程。