message queue - Is it possible to join two password protected Disque instances? -


let's have 2 disque instances:

one instance running on port 7711 ip address 12.34.567.890 , password foo.

another instance running on port 7712 ip address 98.76.543.210 , password bar.

i'm able connect either instance typing:

./disque -h 12.34.567.890 -p 7711 -a foo or ./disque -h 98.76.543.210 -p 7712 -a bar

if want join these instances using cluster meet command, possible?

i noticed smilar thread relating redis cluster.

i'm hoping run disque in docker container other services on single server, i'd have keep password protected.

it possible join them because inter node communication happens on ports not password protected. if use different passwords won't easy client reconnect different node in case node fails. reason, work better if use same password nodes in cluster.


Comments

Popular posts from this blog

c - Bitwise operation with (signed) enum value -

xslt - Unnest parent nodes by child node -

YouTubePlayerFragment cannot be cast to android.support.v4.app.Fragment -