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-02-02 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();

Connections FAQs

more