Download as pdf or txt
Download as pdf or txt
You are on page 1of 27

Preparing the MIM 2016 Portal

Jeff Adkin
PLURALSIGHT AUTHOR

@JeffAdkin www.JAdkin.com
Summary SharePoint 2013 Prerequisites
Installing SharePoint 2013
Creating Portal
Final Configurations
SharePoint 2013 Prerequisites
SharePoint Prerequisites

Set SPN’s
SQL Permissions Prerequisites
We will be using
The Application Pool Installing the
Kerberos. The
Accounts will need to SharePoint Pre-Reqs
Application Pool
have access to the SQL using the Prerequisite
account will need to
server. Installer.
have the SPN.
Demo
Add SQL Permissions for the App Pool
Account
SetSPN –S http/mim2016 Globomantics\MIMSPResetAP
SetSPN –L Globomantics\MIMSPResetAP

Setting the App Pool SPN


To Use Kerberos we need to make sure the SPN for the Application
Pool Account is set. We set this using http/<SharePoint URL>
Demo

Set Application Pool SPN


.NET 4.5
WMF 3.0
IIS
SQL Client
WIF
What is installed for
SharePoint Prerequisites?
Sync Framework
Microsoft Identity
WCF
Updates
SharePoint 2013 Products Preparation Tool
Demo

Install SharePoint Prerequisites


Installing SharePoint 2013
SharePoint Installation Steps

Install SharePoint Run Product


• Install Bits Configuration
• Set SQL Databases
• Setup Central Admin
SharePoint Products Configuration Wizard
Requirements

SQL Database
SQL Server Name SQL Account
Name

Authentication
Central Admin URI and Port
Provider
Demo

Install SharePoint 2013


Creating the Portal
Creating the Portal

Add Managed Create the Web Create the Site


Account Application Collection
Setup our Accounts to
The Web Application We will create a blank
be managed by
will setup IIS for us. 2010 Site Collection.
SharePoint.
SharePoint Managed Accounts

Add in Accounts
- MIMSPResetAP
- MIMSPRegAP
- SPFarm
- *SQLAdmin already added

Do NOT enable Password Management


Demo

Setup Managed Accounts


$ma = Get-SPManagedAccount –Identity
globomantics\mimspresetap
New-SPWebApplication –Name “MIM Portal” –ApplicationPool
“MIMAP” –ApplicationPoolAccount $ma –AuthenticationMethod
“Kerberos” –Port 80 –Url http://mim2016

Create Web Application


SharePoint 2013 is Claims based. For the MIM portal we need Classic
based Kerberos for authentication which is obsolete. You can only do
this in PowerShell.
Demo

Create New Web Application


SharePoint Site Collection
For MIM 2016 we will need to create a blank Site
Collection that uses a 2010 template.
Demo

Create New Site Collection


Final Configurations
Final Configurations

Allow Self Service


View State
Upgrade
We will have to disable View
state We will have to disable Self
Service Upgrade
Disable ViewState

$cs = [Microsoft.sharepoint.administration.spwebservice]::contentservice

$cs.ViewStateOnServer = $false

$cs.Update()

Get-SPTimerJob hourly-all-sptimerservice-health-analysis-job | Disable-


SPTimerJob
$site = Get-SPSite Http://mim2016
$site.AllowSelfServiceUpgrade = $false

Disable Self Service Upgrade


Allowing users to upgrade the Site Collection from 2010 to 2013 will
break the MIM portal. We remove the option so this can not be done.
Demo
Disable ViewState
Disable Self Service Upgrade

You might also like