Error: Both topic and message must be supplied. mosquitto_pub is a simple mqtt client that will publish a message on a single topic and exit.
时间: 2023-12-10 07:42:54 浏览: 174
在论坛中看到了有朋友发帖讲到Altera FPGA特殊管脚的连接
这个错误是因为在使用 mosquitto_pub 命令时没有正确提供主题和消息内容。你需要在命令行中使用 `-t` 参数指定主题,使用 `-m` 参数指定消息内容。例如:
```
mosquitto_pub -t test/topic -m "Hello, World!"
```
这将会向主题为 `test/topic` 的 MQTT 代理服务器发布一条消息,消息内容为 "Hello, World!"。请确保你已经正确安装并配置了 mosquitto_pub 工具,并且已经连接到了正确的 MQTT 代理服务器。
阅读全文