Moving ASP.NET Session State Server to Aurora/MySQL
Our database was in MS SQL Server and we were in the middle of moving to Aurora with MySQL compatibility. And obviously there are differences to be resolved and one of them is we are not sure on how to move the ASP.NET Session state. After several troubleshooting sessions (pun not intended), I finally managed to move the session state server to Aurora. The following two webpages have been very helpful, albeit the first one is outdated: https://www.codeproject.com/Articles/633199/Using-MySQL-Session-State-Provider-for-ASP-NET https://dev.mysql.com/doc/connector-net/en/connector-net-programming-asp-provider.html My steps are as follow: 1. Disable the current state server by commenting/removing the sessionState tag under system.web in web.config. 2. Add MySql.Web Nuget package (As of this post, the working one is version 8.0.17). 3. Add new sessionState tag under system.web <sessionState mode="Custom" customProvider="MySqlSessionStateStore"> ...