简体   繁体   中英

How to set up Mosquitto bridging configuration?

I wanted to set up a test configuration of Mosquitto. For one configuration file, I wrote only this:

listener 1883

I started a server with this config file, and it started successfully.

The second config file has the following:

listener 1884
connection test
address 127.0.0.1:1883

When I try to start the server with this, I get the following error message:

Error: Invalid bridge configuration.
Error: Unable to open configuration file.

It does not matter whether I try it with or without the other server running, or if I try an external address or a local one.

You need to provide a topic section to your bridge to tell the broker which topics to bridge.

eg

listener 1884
connection test
address 127.0.0.1:1883
topic foo/# in

This will bridge into the second broker all topics starting foo/ from the first broker.

Looks at the mosquitto.conf man page for more details about the topic keyword

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM