Re: Client addressable listener

2017-11-08 Thread Thomas Stringer
That did it, thanks so much! For what it's worth, the fix ended up being setting the same listener name and port but with an empty host for listeners and then reusing that same exact information but injecting the public DNS name in the advertised.listeners property. Thanks again! On 11/08/

Re: Client addressable listener

2017-11-08 Thread Jakub Scholz
You have the port ":9090" twice there and the "http://"; protocol should not be there. You have: listeners=CLIENT://:9090 http://my.public.dns.name:9090 ,PLAINTEXT://:9092 But it should be listeners=CLIENT://my.public.dns.name:9090,PLAINTEXT://:9092 Also as I mentioned before the DNS should

Re: Client addressable listener

2017-11-08 Thread Thomas Stringer
Thank you for the reply! I think I'm doing something wrong. I tried using exactly verbatim what you had for listeners: listeners=CLIENT://:9090 ,PLAINTEXT://:9092 Only substituting 'my.public.dns.name` for my actual dns name. It seems as though it didn't like t

Re: Client addressable listener

2017-11-08 Thread Jakub Scholz
Try something like this: listeners=CLIENT://:9090 ,PLAINTEXT://:9092 advertised.listeners=CLIENT://my.public.dns.name:9090,PLAINTEXT://:9092 This will tell the listener to listen on your local ip addresses but to advertise the DNS name. Jakub On Tue, Nov 7, 2017

Client addressable listener

2017-11-07 Thread Thomas Stringer
I can't seem to get a listeners and advertised.listeners configuration for server properties figured out so I can connect remotely with my producer and consumers. If I set it like this... listeners=CLIENT://:9090,PLAINTEXT://:9092 advertised.listeners=CLIENT://:9090,PLAINTEXT://:9092 >From my ex