-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Closed
Description
My source code perfectly worked at version 2.1.28. Then, I was updating target framework to net5.0, also upgraded StackExchange Redis
to newest version, and I got the exception
I tried downgrading Nuget version 2.2.3, 2.1.58, but still got the error. I think a certain version after 2.1.28 has been changed
My ConnectionMultiplexer source:
ConfigurationOptions sentinelConfig = new ConfigurationOptions(); sentinelConfig.ServiceName = redisSection.ServiceName;
foreach (var item in redisSection.Sentinels)
{
sentinelConfig.EndPoints.Add(System.Net.IPAddress.Parse(item.Host), item.Port);
}
if (!string.IsNullOrEmpty(redisSection.SetinelPassword))
{
sentinelConfig.Password = redisSection.SetinelPassword;
sentinelConfig.CommandMap = CommandMap.Create(new HashSet<string>
{
// custom cmd
"INFO","PING","AUTH","PSUBSCRIBE","PUNSUBSCRIBE","SENTINEL","SHUTDOWN","SUBSCRIBE","UNSUBSCRIBE", "ROLE"
});
}
else
sentinelConfig.CommandMap = CommandMap.Sentinel;
sentinelConfig.TieBreaker = "";
//sentinelConfig.DefaultVersion = new Version(4, 0, 11);
// its important to set the Sentinel commands supported
// Get sentinel connection
ConnectionMultiplexer sentinelConnection = ConnectionMultiplexer.Connect(sentinelConfig, Console.Out);
// Create master service configuration
ConfigurationOptions masterConfig = new ConfigurationOptions
{
ServiceName = redisSection.ServiceName,
EndPoints = { { redisSection.Host, redisSection.Port } },
DefaultDatabase = redisSection.Database
};
if (!string.IsNullOrEmpty(redisSection.Password)) masterConfig.Password = redisSection.Password;
//// Get master Redis connection
//var redisMasterConnection = sentinelConnection.GetSentinelMasterConnection(masterConfig);
Connection = new Lazy<ConnectionMultiplexer>(() => sentinelConnection.GetSentinelMasterConnection(masterConfig));`
Exception I got:
StackExchange.Redis.RedisCommandException: This operation is not available unless admin mode is enabled: ROLE
I tried adding
sentinelConfig.AllowAdmin=true
Then I got other exception:
This operation has been disabled in the command-map and cannot be used: ROLE
ThomasTosik
Metadata
Metadata
Assignees
Labels
No labels