0

I have an issue with my SSA, I have deleted the old one as it was corrupted and now when I am trying to create a new one I am receiving the attached error message:

enter image description here

Ganesh Sanap - MVP
  • 44,918
  • 21
  • 30
  • 61
Harris
  • 593
  • 1
  • 8
  • 33

1 Answers1

0

Open the web.config file for CA via IIS > localhost > Sites > SharePoint Central Administration > right click > Explore.

Search for enableSessionState and then set it to true.

enter image description here

Also make sure you have System.Web.SessionState.SessionStateModule in the file:

<httpModules> 
    <add name = "Session" type = "System.Web.SessionState.SessionStateModule" /> 
</httpModules>

References: Session state can only be used when enableSessionState is set to true Error.

Chelsea_MSFT
  • 4,542
  • 1
  • 6
  • 10