I'm trying to bridge two MQTT brokers on the same system, HiveMQ
and Mosquitto
. HiveMQ
is working on port 1884
and Mosquitto
is running on 1883
. However when I use the mosquitto_pub
command to publish to the mosquitto
broker at port 1883
, it does not show up on port 1884
(Using MQTT.fx
as a client subscribing to all topics on port 1884
)
This is while I only configured the mosquitto
broker with a bridge.
When I configured HiveMQ
as well, it only shows an unable to connect to Bridge1, disconnected
message on the HiveMQ
command window. I've included the configurations below. Someone please help.
In the mosquitto.config
file I have done the following under bridges
.
connection hivemq
address 127.0.0.1:1884
start_type automatic
clientid clientno1
notifications true
Meanwhile, I also editted the HiveMQ bridges.xml
file to read
<?xml version="1.0" encoding="UTF-8"?>
<bridges xsi:noNamespaceSchemaLocation="http://www.hivemq.com/bridges/bridge.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<bridge>
<connectionName>Bridge1</connectionName>
<addresses>
<address>
<host>localhost</host>
<port>1883</port>
</address>
</addresses>
<clientId>bridgeClient</clientId>
<topicPatterns>
<topicPattern>
<topic>#</topic>
<qos>1</qos>
<direction>both</direction>
<localPrefix>local/</localPrefix>
<remotePrefix>remote/</remotePrefix>
</topicPattern>
</topicPatterns>
<cleanSession>true</cleanSession>
<idleTimeout>10</idleTimeout>
<notificationsEnabled>true</notificationsEnabled>
<tryPrivate>true</tryPrivate>
</bridge>
The image shown is when I tried the same process on another system. Here, the brokers are bridged. Comparing this to what I was doing earlier, the only difference is that on my original system there is no statement saying opening ipv4 listen socket on 1883. Is this the problem?