I was trying to resolve "cache is not configured" issue on SP2010 production box and came across the solution being discussed in one of the SharePoint chick blog
The problem is before I try out the fix I would like to first verify whether the Portal Super User Account and Portal Super Reader Account already exits, using Power Shell command-lets?
|
|
||||
|
|
|
Technet documentation concerning configuring the object cache user accounts: http://technet.microsoft.com/en-us/library/ff758656.aspx Using the SharePoint 2010 Management Shell you can verify if the Super User and Super Reader accounts are already configured. Firstly run the SharePoint 2010 Management Shell with Administrator rights. Secondly type in the following commands:
The command Get-SPWebApplication shows you the webapplications you have (excluding the Central Admin Webapplication) Secondly choose the webapplication you would like to verify the superuser account for and type the following commands replacing "x" with the correct information:
The command $wa.Properties["portalsuperuseraccount"] will show you the Super User account that is configured for that webapplication. Thirdly to verify the Super Reader account:
The command $wa.Properties["portalsuperreaderaccount"] will show you the Super Reader account configured for the webapplication. |
|||||||||||
|