Pages

Wednesday, July 17, 2013

Create My Site 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 MySite Web Application, Creating a MySiteHost Site Collection and then configuring Object Cache users.

Steps

clip_image001

clip_image002

clip_image003

clip_image004

clip_image005

clip_image006

Next Create My Site Host Site Collection

clip_image007

clip_image008

Update Managed Paths

Delete the OOTB sites managed path.

clip_image009

Add new managed path called "Personal" for new My Sites to be created

clip_image010

Enable Self Service Site Creation

clip_image011

clip_image012

Do not visit My Site yet!

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

No comments: