Pages

Wednesday, July 17, 2013

Create Enterprise Search Center

 

This blog is part of Series : Comprehensive SharePoint 2013 Development Environment Installation and Configuration

Overview

Create Enterprise Search Center Web Application and Object Cache user configuration.

Steps

clip_image001

clip_image002

clip_image003

clip_image004

clip_image005

Create new site Collection with template Enterprise Search Center

clip_image006

clip_image007

clip_image008

Apply User Policies per Web App for Default Zone

  • Verify that the user account that is performing this procedure is a member of the Farm Administrators group on the computer that is running the SharePoint Central Administration website.
  • On the Central Administration website, in the Application Management section, click Manage web applications.
  • Click the name of the web application that you want to configure.
  • On the Web Applications tab, in the Policy group, click User Policy.
  • In the Policy for Web Application window, click Add Users.
  • From the Zones list, select All zones, and then click Next.
  • In the Users box, type the user name for the Portal Super User account.
  • Click the Check Names icon to ensure that the account name can be resolved by the authentication providers on the application server.
  • In the Choose Permissions section, check the Full Control - Has full control box.
  • Click Finish.
  • Repeat Steps 5 through 8 for the Portal Super Reader account.
  • In the Choose Permissions section, check the Full Read - Has full read-only access box.
  • Click Finish.
  • Make note of how the names for the Object Cache Super Reader and Object Cache Super User accounts are displayed in the User Name column. The displayed strings will be different depending on whether you are using claims authentication for the web application.

Configure object cache user accounts by using SharePoint PowerShell in Administrator mode

$wa = Get-SPWebApplication -Identity “http://search.mydomain.com”
$wa.Properties["portalsuperuseraccount"] = “SpCacheSuperUser"
$wa.Properties["portalsuperreaderaccount"] = “SpCacheSuperReader”
$wa.Update()

1 comment:

Phoenix Pop Productions said...

This is a great share and find. Very detailed. I had some issues with the portalsuperuseraccount, but I was able to get through it.