#azure #session #redis #session-state-provider
#лазурный #сессия #редис #поставщик состояния сеанса #azure #сеанс #redis
Вопрос:
Я пытаюсь сохранить ASP.NET состояние сеанса в кэше (Azure cache для redis), как указано здесь https://learn.microsoft.com/en-us/azure/azure-cache-for-redis/cache-aspnet-session-state-provider
но я получаю сообщение об ошибке ниже.
Невозможно подключиться к mydomain.redis.cache.windows.net: 6379 / Интерактивный, источник: ResetNonConnected, входной буфер: 0, ожидающий: 0, последнее чтение: 5 секунд назад, последняя запись: 5 секунд назад, запись без ответа: 1106595 секунд назад, сохранение: 60 секунд, ожидание: 0, состояние: подключение, последнее сердцебиение: никогда, последний раз-mbeat: -1s назад, глобальный: 5s назад, mgr: Неактивный, ошибка: никогда StackExchange.Повторный вызов.Исключение RedisConnectionException: невозможно подключиться к mydomain.redis.cache.windows.net: 6379 / Интерактивный, источник: ResetNonConnected, входной буфер: 0, ожидающий: 0, последнее чтение: 5 секунд назад, последняя запись: 5 секунд назад, запись без ответа: 1106595 секунд назад, сохранение: 60 секунд, ожидание: 0, состояние: подключение, последнее сердцебиение: никогда, последний-mbeat: -1s назад, глобальный: 5s назад, mgr: Неактивный, ошибка: никогда
<add name="AzureRedisCacheConnection" connectionString="mydomain.redis.cache.windows.net:6379,password=password=,ssl=False,abortConnect=False"/>
</connectionStrings>
<sessionState mode="Custom" customProvider="AzureCacheForRedisProvider">
<providers>
<!-- For more details check https://github.com/Azure/aspnet-redis-providers/wiki -->
<!-- Either use 'connectionString' OR 'settingsClassName' and 'settingsMethodName' OR use 'host','port','accessKey','ssl','connectionTimeoutInMilliseconds' and 'operationTimeoutInMilliseconds'. -->
<!-- 'throwOnError','retryTimeoutInMilliseconds','databaseId' and 'applicationName' can be used with both options. -->
<!--
<add name="AzureCacheForRedisProvider"
host = "127.0.0.1" [String]
port = "" [number]
accessKey = "" [String]
ssl = "false" [true|false]
throwOnError = "true" [true|false]
retryTimeoutInMilliseconds = "5000" [number]
databaseId = "0" [number]
applicationName = "" [String]
connectionTimeoutInMilliseconds = "5000" [number]
operationTimeoutInMilliseconds = "1000" [number]
connectionString = "<Valid StackExchange.Redis connection string>" [String]
settingsClassName = "<Assembly qualified class name that contains settings method specified below. Which basically return 'connectionString' value>" [String]
settingsMethodName = "<Settings method should be defined in settingsClass. It should be public, static, does not take any parameters and should have a return type of 'String', which is basically 'connectionString' value.>" [String]
loggingClassName = "<Assembly qualified class name that contains logging method specified below>" [String]
loggingMethodName = "<Logging method should be defined in loggingClass. It should be public, static, does not take any parameters and should have a return type of System.IO.TextWriter.>" [String]
redisSerializerType = "<Assembly qualified class name that implements Microsoft.Web.Redis.ISerializer>" [String]
/>
-->
<add name="AzureCacheForRedisProvider" type="Microsoft.Web.Redis.RedisSessionStateProvider"
connectionString="AzureRedisCacheConnection"
/>
</providers>
</sessionState> ````
What am I missing here?
Ответ №1:
Я прочитал официальный документ, и он работает для меня.
Если вам нужна поддержка 6379
, вам необходимо установить Allow access only via SSL=No
.
Я также считаю, что это официальные блоги, я думаю, это полезно для вас.
Объявление ASP.NET Поставщик состояния сеанса для предварительного выпуска Redis
Содержимое в моем web.config
файле.
<sessionState mode="Custom" customProvider="MySessionStateStore">
<providers>
<!-- For more details check https://github.com/Azure/aspnet-redis-providers/wiki -->
<!-- Either use 'connectionString' OR 'settingsClassName' and 'settingsMethodName' OR use 'host','port','accessKey','ssl','connectionTimeoutInMilliseconds' and 'operationTimeoutInMilliseconds'. -->
<!-- 'throwOnError','retryTimeoutInMilliseconds','databaseId' and 'applicationName' can be used with both options. -->
<!--
<add name="MySessionStateStore"
host = "127.0.0.1" [String]
port = "" [number]
accessKey = "" [String]
ssl = "false" [true|false]
throwOnError = "true" [true|false]
retryTimeoutInMilliseconds = "5000" [number]
databaseId = "0" [number]
applicationName = "" [String]
connectionTimeoutInMilliseconds = "5000" [number]
operationTimeoutInMilliseconds = "1000" [number]
connectionString = "<Valid StackExchange.Redis connection string>" [String]
settingsClassName = "<Assembly qualified class name that contains settings method specified below. Which basically return 'connectionString' value>" [String]
settingsMethodName = "<Settings method should be defined in settingsClass. It should be public, static, does not take any parameters and should have a return type of 'String', which is basically 'connectionString' value.>" [String]
loggingClassName = "<Assembly qualified class name that contains logging method specified below>" [String]
loggingMethodName = "<Logging method should be defined in loggingClass. It should be public, static, does not take any parameters and should have a return type of System.IO.TextWriter.>" [String]
redisSerializerType = "<Assembly qualified class name that implements Microsoft.Web.Redis.ISerializer>" [String]
/>
-->
<add name="MySessionStateStore" type="Microsoft.Web.Redis.RedisSessionStateProvider" host="jasonp2rediscache.redis.cache.windows.net:6380" accessKey="kKtOl***kLPg=" ssl="true" />
</providers>
</sessionState>
Мой тестовый шаг.
Шаг 1. Добавьте Session["loginTime"]
метод входа в систему.
[HttpPost]
[AllowAnonymous]
[ValidateAntiForgeryToken]
public async Task<ActionResult> Login(LoginViewModel model, string returnUrl)
{
if (!ModelState.IsValid)
{
return View(model);
}
// This doesn't count login failures towards account lockout
// To enable password failures to trigger account lockout, change to shouldLockout: true
var result = await SignInManager.PasswordSignInAsync(model.Email, model.Password, model.RememberMe, shouldLockout: false);
switch (result)
{
case SignInStatus.Success:
Session["loginTime"] = DateTime.Now.ToString();// Add this line
Session["webapp"] = "mywebapp";// Add this line
return RedirectToLocal(returnUrl);
case SignInStatus.LockedOut:
return View("Lockout");
case SignInStatus.RequiresVerification:
return RedirectToAction("SendCode", new { ReturnUrl = returnUrl, RememberMe = model.RememberMe });
case SignInStatus.Failure:
default:
ModelState.AddModelError("", "Invalid login attempt.");
return View(model);
}
}
Шаг 2. Подключите кеш redis с помощью redsmin. ( https://app.redsmin.com /)
Я зарегистрировался на этом веб-сайте для проверки значения.
Шаг 3. Запустите проект.
Шаг 4. Проверьте ключ и значение в redsmin.