Pages

Wednesday, July 17, 2013

Create Portal Web Application

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

Overview

This blog will cover steps on creating the first Portal Web Application, Creating a Publishing Site Collection and then configuring Object Cache users.

Steps

clip_image001

clip_image002

clip_image003

clip_image004

clip_image005

Create Publishing Portal Site Collection

clip_image006

clip_image007

clip_image008

clip_image009

Configure Test Users

Let go to Site Settings>Site Permissions and verify and update with our test users (You will need to further to test OWA and other functionalities)

clip_image010

Portal.Admin is already member of the Portal Owners group since we added the Portal.Admin as the Site Collection Administrator

clip_image011

Add CORP\Portal.Contributor to the Portal Members group

clip_image012

Add CORP\Portal.reader to the Portal Visitors group

clip_image013

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://portal.mydomain.com”
$wa.Properties["portalsuperuseraccount"] = “SpCacheSuperUser"
$wa.Properties["
portalsuperreaderaccount"] = “SpCacheSuperReader”
$wa.Update()

No comments: