RabbitMQ TLS guide

The aim of this guide is to explain how to configure Abiquo to work with RabbitMQ with TLS.

Purpose

The aim of this guide is to explain how to configure Abiquo as client of a RabbitMQ with TLS enabled. You can follow the guide in the RabbitMQ documentation to configure RabbitMQ TLS from the server side. Example of rabbitmq.config:

[ {rabbit, [ {tcp_listeners, [{"127.0.0.1",5672}]}, {ssl_listeners, [{"10.60.12.5",5671}]}, {ssl_options, [{cacertfile,"/opt/testca/cacert.pem"}, {certfile,"/opt/server/cert.pem"}, {keyfile,"/opt/server/key.pem"}, {verify,verify_peer}, {password, "changeit"}, {fail_if_no_peer_cert,false}]} ]} ].

Note: Ensure that RabbitMQ has the right permissions to read the cert/key files.

The TLS password option will be needed if your private key has a password. If you don't have a password set up for your private key, just remove it.

Properties

The properties below only apply if the value of the system property 'abiquo.rabbitmq.tls' is true.

Property name

Description

Default

abiquo.rabbitmq.tls

True if TLS is enabled.

False

abiquo.rabbitmq.tls.trustallcertificates

If true, Abiquo will not enforce any server certificate authentication.

False

Configurations

Plain TCP

This is the default configuration with no SSL enabled. The default values match this configuration but you should ensure that 'abiquo.rabbitmq.tls' value is false.

Property name

Value

abiquo.rabbitmq.tls

false

Trust all certificates

In this configuration Abiquo will connect without validating the server certificate and without presenting any client certificates.

Property name

Value

abiquo.rabbitmq.tls

true

abiquo.rabbitmq.tls.trustallcertificates

true

Use trust manager to validate server certificates

In this configuration Abiquo will connect and validate the server certificate but without presenting any client certificate. You can find an example of how to import your server certificate to your keystore on the RabbitMQ website in the section "Presenting and validating certificates".

Property name

Value

abiquo.rabbitmq.tls

true

abiquo.rabbitmq.tls.trustallcertificates

false





Copyright © 2006-2024, Abiquo Holdings SL. All rights reserved