vRA 6.2 rabbitmq.config
## In the document (P11, Strong Protocols) the following line ends with a comma. This will cause the serivce to fail.
## So -> {versions, ['tlsv1.2', 'tlsv1.1', tlsv1]},
## Should be -> {versions, ['tlsv1.2', 'tlsv1.1', tlsv1]}
## See below for correct config
[
{ssl, [{versions, ['tlsv1.2', 'tlsv1.1', tlsv1]}
]},
{rabbit, [
{ssl_listeners, [5672]},
{tcp_listeners, []},
{ssl_options, [{cacertfile,"/etc/rabbitmq/certs/ca/cacert.pem"},
{certfile,"/etc/rabbitmq/certs/server/cert.pem"},
{keyfile,"/etc/rabbitmq/certs/server/key.pem"},
{verify,verify_peer},
{fail_if_no_peer_cert,false},
{versions, ['tlsv1.2', 'tlsv1.1', tlsv1]}
]},
{heartbeat,30}
]}
].