Monday, March 9, 2020

TLS 1.2 upgrade to Redis Server connection string approach

Sitecore KB has provided patch to enforce tls1.2 upgrade however depending on how solution startup application is triggered this patch will not work. The only workaround that help is to enforce connectionstring to have special attribute sslprotocol=tls12 .
This is something microsoft has given as one of the solution to help with.

After applying several patch and trial & error approach, the only solution worked is brute force method to enforce TLS 1.2 certificate to Redis cache server.

xyz.redis.cache.windows.net:6380,password=---=,ssl=True,abortConnect=False, defaultDatabase=x,sslprotocols=tls12

No comments :