Dynamic Shovels are not working between both SSL Rabbit brokers #12757
-
Describe the bugI am using the Dynamic shovels between On-prem and Off-prem rabbit brokers. Earlier both are using amqp but recently we moved to TLS broker. After this shovels are not working and getting below error 👍 Shovel 'ICompanyDataFeedStateChangeBatchEvent.xxxx.PlansServicing_UAT' in virtual host 'PlansServicing_UAT' will now try to connect... Reproduction stepsNA Expected behaviorconnection should work with TLS Additional contextNo response |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
@kadudhularavi please use Discussions for question. You haven't provided any evidence of a bug. Our team will not troubleshoot TLS for you. We have, however, written an extensive guide explaining how to do it efficiently and with minimum guessing. We do not have RabbitMQ version, Erlang version (yes, it matters), or any details to work with. There is, however, a hint right in the exception:
This Shovel is configured to perform peer verification using the We do not have any details on what Erlang version is used but we do know — and this is mentioned in the docs and release notes of RabbitMQ 3.13.0, 4.0.1 — that on Erlang 26, peer verification is enabled for client (outgoing) TLS connections by default, including shovels. See Securing Shovel Connections with TLS and if you don't need peer verification, set |
Beta Was this translation helpful? Give feedback.
@kadudhularavi please use Discussions for question. You haven't provided any evidence of a bug.
Our team will not troubleshoot TLS for you. We have, however, written an extensive guide explaining how to do it efficiently and with minimum guessing.
We do not have RabbitMQ version, Erlang version (yes, it matters), or any details to work with.
There is, however, a hint right in the exception:
This Shovel is configured to perform peer verification using the
verify
setting set toverify_peer
but you haven't provided any CA certificates, so the TLS implementation in Erlangcannot possibly verify the peer's certificate against a…