我使用蚊子作爲我的經紀人服務器。我想根據橋接連接建立一個經紀人集羣。Mosquitto MQTT循環訂閱
當我發佈並訂閱主題「存在」時,我從三個代理服務器得到了無盡的重複消息。
我有三個服務器,如: 10.80.1.1,10.80.1.2
和我具有用於每個服務器的以下配置。
on server 10.80.1.1, the config as the following:
connection myconn
address 10.80.1.2:1881
topiC# both
cleansession true
try_private false
bridge_attempt_unsubscribe false
notifications false
allow_anonymous true
start_type automatic
clientid Bridge3
on server 10.80.1.2, the config as the following:
connection myconn
address 10.80.1.1:1883
topiC# both
cleansession true
try_private false
bridge_attempt_unsubscribe false
notifications false
allow_anonymous true
start_type automatic
clientid Bridge2
誰能幫我解決這個問題。
儘管我在添加try_private true –