Rebus RabbitMq on AWS amqps
See original GitHub issueHi,
I would like to ask a little help.
I am setting up multinode hosting in our devserver (plan to do it also in production later). I am trying to use Rebus with RabbitMq on AWS Amazon MQ but I am running into connectivity issues.
AWS provides an endpoint for RabbitMq with amqps protocol. In the Elsa tutorial for Multinode hosting one can see the setting which contains only a querystring. If I set that querystring as an amqps URI then I get the below error on startup:
Unhandled exception. Rebus.Injection.ResolutionException: Could not resolve Rebus.Bus.IBus with decorator depth 0 - registrations: Rebus.Injection.Injectionist+Handler
---> RabbitMQ.Client.Exceptions.BrokerUnreachableException: None of the specified endpoints were reachable
---> System.IO.IOException: connection.start was never received, likely due to a network timeout
All works well on my local machine with docker-compose and amqp protocol.
I found some information while googling this error and all seemed to suggest enabling SSL mode. I found options for that in Rebus code, but I don’t know how I could do that in Elsa. Could you please help me with this issue?
Issue Analytics
- State:
- Created a year ago
- Comments:5 (5 by maintainers)
Good to know, thanks for sharing!
HI @sfmskywalker Thank you so much for the quick response! That’s exactly what I was looking for, but I couldn’t figure out the interfaces by myself. I am now trying it out and will let you know how it goes.