rabbitmq.conf:management.ssl.port = 15671management.ssl.cacertfile = E:/Program Files/RabbitMQ Server/certs/rootca.pemmanagement.ssl.certfile = E:/Program Files/RabbitMQ Server/certs/server.pemmanagement.ssl.keyfile = E:/Program Files/RabbitMQ Server/certs/serverkey.pem
...Management plugin: HTTPS listener started on port 15671
Listening ports
Protocol Bound to Port amqp 0.0.0.0 5672 amqp :: 5672 clustering :: 25672 http 0.0.0.0 15672 http :: 15672 https 0.0.0.0 15671 https :: 15671
This page can’t be displayedTurn on TLS 1.0, TLS 1.1, and TLS 1.2 in Advanced settings and try connecting to https://localhost:15671 again.
If this error persists, it is possible that this site uses an unsupported protocol or cipher suite such as RC4 (link for the details), which is not considered secure. Please contact your site administrator.
>openssl s_server -accept 8443 -cert server.pem -key serverkey.pem -CAfile rootca.pem
>openssl s_client -connect localhost:8443 -CAfile rootca.pem -verify 8 -verify_hostname server_name"verify depth is 8CONNECTED(00000154)---truncated here------Certificate chain---truncated here------Server certificate-----BEGIN CERTIFICATE--------truncated here--------END CERTIFICATE-----subject=/C=CA/ST=Quebec/L=Montreal/O=CN/CN=serverissuer=/DC=com/DC=Domain/CN=IssuingCA---No client certificate CA names sentPeer signing digest: SHA512Server Temp Key: X25519, 253 bits---SSL handshake has read 6092 bytes and written 269 bytesVerification: OKVerified peername: server_name---New, TLSv1.2, Cipher is ECDHE-RSA-AES256-GCM-SHA384Server public key is 2048 bitSecure Renegotiation IS supportedCompression: NONEExpansion: NONENo ALPN negotiatedSSL-Session:Protocol : TLSv1.2Cipher : ECDHE-RSA-AES256-GCM-SHA384Session-ID: 58166A3E0F08B8535AED647BF089B9114A109080D8A90D0780403B1D37F8821ESession-ID-ctx:Master-Key: 75D8D2D5A3B86C16B8866E3337410D5035EFEC72C2900EAF5E616B1B8920E360EDE2F9E6E7A01C99E3C8552C1DF0C5F5PSK identity: NonePSK identity hint: NoneSRP username: NoneTLS session ticket lifetime hint: 7200 (seconds)TLS session ticket:---truncated here---Start Time: 1583952425Timeout : 7200 (sec)Verify return code: 0 (ok)Extended master secret: yes---
>openssl s_client -connect 127.0.0.1:15671
CONNECTED(000000E8)write:errno=0---no peer certificate available---No client certificate CA names sent---SSL handshake has read 0 bytes and written 176 bytesVerification: OK---New, (NONE), Cipher is (NONE)Secure Renegotiation IS NOT supportedCompression: NONEExpansion: NONENo ALPN negotiatedSSL-Session:Protocol : TLSv1.2Cipher : 0000Session-ID:Session-ID-ctx:Master-Key:PSK identity: NonePSK identity hint: NoneSRP username: NoneStart Time: 1583952874Timeout : 7200 (sec)Verify return code: 0 (ok)Extended master secret: no---
>openssl s_client -connect 127.0.0.1:15671
verify depth is 8
CONNECTED(00000140)
write:errno=0
---
no peer certificate available
---
No client certificate CA names sent
---
SSL handshake has read 0 bytes and written 176 bytes
Verification: OK
---
New, (NONE), Cipher is (NONE)
Secure Renegotiation IS NOT supported
Compression: NONE
Expansion: NONE
No ALPN negotiated
SSL-Session:
Protocol : TLSv1.2
Cipher : 0000
Session-ID:
Session-ID-ctx:
Master-Key:
PSK identity: None
PSK identity hint: None
SRP username: None
Start Time: 1584013682
Timeout : 7200 (sec)
Verify return code: 0 (ok)
Extended master secret: no
---
--
You received this message because you are subscribed to the Google Groups "rabbitmq-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to rabbitmq-user...@googlegroups.com.
To view this discussion on the web, visit https://groups.google.com/d/msgid/rabbitmq-users/3f18c61b-91c0-400f-af32-df6f061f53b7%40googlegroups.com.
To unsubscribe from this group and stop receiving emails from it, send an email to rabbitmq-users+unsubscribe@googlegroups.com.
Hi Luke
2020-03-12 10:53:42.013 [debug] <0.545.0> Starting HTTP[S] listener with transport ranch_ssl, options [{cacertfile,"C:/ProgramData/Certs/RootCA.pem"},{certfile,"C:/ProgramData/Certs/rabbitmqdev.cert.pem"},{ciphers,["ECDHE-ECDSA-AES256-GCM-SHA384","ECDHE-RSA-AES256-GCM-SHA384","ECDHE-ECDSA-AES256-SHA384","ECDHE-RSA-AES256-SHA384","ECDH-ECDSA-AES256-GCM-SHA384","ECDH-RSA-AES256-GCM-SHA384","ECDH-ECDSA-AES256-SHA384","ECDH-RSA-AES256-SHA384","DHE-RSA-AES256-GCM-SHA384"]},{client_renegotiation,false},{depth,2},{honor_cipher_order,true},{honor_ecc_order,true},{keyfile,"C:/ProgramData/Certs/rabbitmqdev.key.pem"},{password,"*****"},{port,15671},{secure_renegotiate,true},{versions,['tlsv1.2']},{versions,['tlsv1.2','tlsv1.1',tlsv1]}] and protocol options #{sendfile => false}, stream handlers [rabbit_cowboy_stream_h,cowboy_compress_h,cowboy_stream_h]2020-03-12 10:53:42.029 [info] <0.593.0> Management plugin: HTTPS listener started on port 15671
Hi Luke