Replies: 5 comments
-
I will convert this issue to a GitHub discussion. Currently GitHub will automatically close and lock the issue even though your question will be transferred and responded to elsewhere. This is to let you know that we do not intend to ignore this but this is how the current GitHub conversion mechanism makes it seem for the users :( |
Beta Was this translation helpful? Give feedback.
-
Our team must have a certain amount of information to work with in order to help you. Getting all the details necessary to reproduce an issue, make a conclusion or even form a hypothesis about what's happening can take a fair amount of time. Our team is multiple orders of magnitude smaller than the RabbitMQ community. Please help others help you by providing a way to reproduce the behavior you're
Feel free to edit out hostnames and other potentially sensitive information. When/if we have a complete enough understanding of what's going on, a recommendation will be provided or a new issues with more context will be filed. |
Beta Was this translation helpful? Give feedback.
-
Besides inspecting effective configuration, ssl_options.verify = verify_peer
ssl_options.fail_if_no_peer_cert = true with your clients? If they don't provide a certificate, they won't be able to connect by definition. This TLS guide section explains what TLS peer verification is and what it means for both servers and clients. |
Beta Was this translation helpful? Give feedback.
-
With sefl signed certificate i must config:
ssl_options.verify = verify_none
ssl_options.fail_if_no_peer_cert = false
is that true?
Vào Th 5, 16 thg 9, 2021 vào lúc 17:26 Michael Klishin <
***@***.***> đã viết:
… Besides inspecting effective configuration
<https://www.rabbitmq.com/configure.html#verify-configuration-effective-configuration>
,
are you certain you can/want to use these two
ssl_options.verify = verify_peerssl_options.fail_if_no_peer_cert = true
with your clients? If they don't provide a certificate, they won't be able
to connect by definition. This TLS guide section
<https://www.rabbitmq.com/ssl.html#peer-verification> explains what TLS
peer verification is and what it means for both servers and clients.
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#3434 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/APUY52Y3X6EW6LGG4TVADA3UCHA4ZANCNFSM5EENMDSA>
.
Triage notifications on the go with GitHub Mobile for iOS
<https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675>
or Android
<https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub>.
|
Beta Was this translation helpful? Give feedback.
-
i fix my config file and this is my config now: mqtt.listeners.ssl.default = 8883 ssl_options.cacertfile = /etc/rabbitmq/testca/ca_certificate.pem ssl_options.verify = verify_none In client i use: MQTTFx , and i add ca_certificate.pem, client_certificate.pem and client_key.pem My error:!!!!! Caused by: javax.net.ssl.SSLHandshakeException: Remote host closed connection during handshake |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi, i have a issuae, a config rabbitmq with /etc/rabbitmq/rabbit.conf and a add plugin mqtt,
In rabbitmq.conf i config:
default TLS-enabled port for MQTT connections
mqtt.listeners.tcp.1 = 8883
mqtt.listeners.tcp.default = 1883
ssl_options.cacertfile = /etc/rabbitmq/tls-gen/basic/result/ca_certificate.pem
ssl_options.certfile = /etc/rabbitmq/tls-gen/basic/result/server_certificate>
ssl_options.keyfile = /etc/rabbitmq/tls-gen/basic/result/server_key.pem
ssl_options.verify = verify_peer
ssl_options.fail_if_no_peer_cert = true
i want to use tls mqtt in port 8883
But in client i use MQTTBox and MQTTfx, i cant connect to server MQTT (Rabbitmq - port 8883)
Can U help me about that!
In my server i add : ca_certificate.pem, client_certificate.pem and client_key.pem
Thank!
Beta Was this translation helpful? Give feedback.
All reactions