You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While connecting to secure Azure managed Redis by setting --tls in redis-cli, it gets connected without error, but the same is not working in the riot command.
Confirm the ssl mode and root ca installed openssl s_client -showcerts -connect <hostname>:10000
Check redis-cli command to confirm the connection (working as expected) redis-cli -h <hostname> -p 10000 -a <password> --tls
Riot command to test the connection (Not working), but worked by adding --insecure.
./riot ping -h <hostname> -p 10000 -a <password> --tls
Unable to connect to 172.x.x.x/<unresolved>:10000
I tried adding the location by --cacert /etc/ssl/certs/DigiCert_Global_Root_G3.pem, but the result was the same.
Disabled the SSL mode on the server side and worked perfectly again!
Is there any issue with picking the CA certificate from the default location, unlike redis-cli?
While connecting to secure Azure managed Redis by setting --tls in redis-cli, it gets connected without error, but the same is not working in the riot command.
openssl s_client -showcerts -connect <hostname>:10000Check redis-cli command to confirm the connection (working as expected)
redis-cli -h <hostname> -p 10000 -a <password> --tlsRiot command to test the connection (Not working), but worked by adding
--insecure.I tried adding the location by
--cacert /etc/ssl/certs/DigiCert_Global_Root_G3.pem, but the result was the same.Is there any issue with picking the CA certificate from the default location, unlike redis-cli?