Help Center/
Distributed Message Service for RabbitMQ/
FAQs/
Connections/
What Should I Do If I Fail to Access a RabbitMQ Instance with SSL Encryption?
Updated on 2024-06-18 GMT+08:00
What Should I Do If I Fail to Access a RabbitMQ Instance with SSL Encryption?
1. Check the inbound rule of the security group. You must allow access using port 5671 (with SSL encryption) or 5672 (without SSL encryption).
2. Configure one-way SSL authentication as follows:
1 2 3 4 5 6 7 8 |
ConnectionFactory factory = new ConnectionFactory(); factory.setHost(host); factory.setPort(port); factory.setUsername(user); factory.setPassword(password); factory.useSslProtocol(); Connection connection = factory.newConnection(); Channel channel = connection.createChannel(); |
Parent topic: Connections
Feedback
Was this page helpful?
Provide feedbackThank you very much for your feedback. We will continue working to improve the documentation.See the reply and handling status in My Cloud VOC.
The system is busy. Please try again later.
For any further questions, feel free to contact us through the chatbot.
Chatbot