// configuration details
 var configurationOptions = new ConfigurationOptions
 {
     EndPoints = { redisSettings.EndPoints },
     Ssl = true,
     SslProtocols = SslProtocols.Tls12,
     Password = redisSettings.Password,
     AbortOnConnectFail = false
 };

// code used to connect DB
var redisEnabled = redisSettings.IsEnabled;
dynamic storage = new FileStorage();
try
{
    if (redisEnabled)
    {
        var redis = ConnectionMultiplexer.Connect(configurationOptions);
        if (redis.IsConnected)
        {
            storage = new RedisStorage(redis, reportsPath);
        }
    }
}

Redis DB is connected in local machines, But it is not connecting in servers(IsConnected = false), No exception, No error messages

Same pfx file is used in local machine and in server Using the same CA and private key, it is connecting from redis client in server

Comment From: sundb

Please create this issue at https://github.com/redis/NRedisStack for help.