To start service application instances from Central Administration
1. Start SharePoint 2013 Central Administration.
•For Windows Server 2008 R2:
Click Start, click Microsoft SharePoint 2013 Products, and then click SharePoint 2013 Central Administration.
•For Windows Server 2012:
On the Start screen, click SharePoint 2013 Central Administration.
If SharePoint 2013 Central Administration is not on the Start screen:
Right-click Computer, clicks all apps, and then clicks SharePoint 2013 Central Administration.
For more information about how to interact with Windows Server 2012, see Common Management Tasks and Navigation in Windows Server 2012.
2. In SharePoint 2013 Central Administration, on the Application Management page, in the Service Applications section, click Manage Services on Server.
3. Next to the Business Data Connectivity service, click Start.
4. Next to the Managed Metadata Web Service, click Start.
5. Next to the PerformancePoint Services service, click Start.
6. Next to the Secure Store Service, click Start.
7. Next to the User Profile Service, click Start.
The Search service instance must be started by using Windows PowerShell because you cannot start it from Central Administration unless a Search Service application already exists.
To start the Search service instance by using Windows PowerShell
1. Verify that you have the following memberships:
•securityadmin fixed server role on the SQL Server instance.
•db_owner fixed database role on all databases that are to be updated.
•Administrators group on the server on which you are running the Windows PowerShell cmdlets.
2. Start the SharePoint 2013 Management Shell.
•For Windows Server 2008 R2:
•On the Start menu, click All Programs, click Microsoft SharePoint 2013 Products, and then click SharePoint 2013 Management Shell.
•For Windows Server 2012:
•On the Start screen, click SharePoint 2013 Management Shell.
•Right-click Computer, click All apps, and then click SharePoint 2013 Management Shell.
3. To start the Search service instance, at the Windows PowerShell command prompt, type the following commands and press ENTER after each one:
$SearchInst = Get-SPEnterpriseSearchServiceInstance
# Stores the identity for the Search service instance on this server as a variable
Start-SPServiceInstance $SearchInst
# Starts the service instance
To upgrade the Secure Store service application by using Windows PowerShell
1. $applicationPool = Get-SPServiceApplicationPool -Identity 'SharePoint Web Services default'
2. $sss = New-SPSecureStoreServiceApplication -Name 'Secure Store' -ApplicationPool $applicationPool -DatabaseName 'SecureStore_Upgrade_DB' -AuditingEnabled
3. $sssp = New-SPSecureStoreServiceApplicationProxy -Name ProxyName -ServiceApplication $sss –DefaultProxyGroup
4. Update-SPSecureStoreApplicationServerKey -Passphrase <Passphrase> -ServiceApplicationProxy $sssp
To upgrade the Business Data Connectivity service application by using Windows PowerShell
1. $applicationPool = Get-SPServiceApplicationPool -Identity 'SharePoint Web Services default'
2. New-SPBusinessDataCatalogServiceApplication -Name 'BDC Service' -ApplicationPool $applicationPool -DatabaseName 'BDC_Service_DB'
To upgrade the Managed Metadata service application by using Windows PowerShell
1. $applicationPool = Get-SPServiceApplicationPool -Identity 'SharePoint Web Services default'
2. $mms = New-SPMetadataServiceApplication -Name 'Managed Metadata Service Application' -ApplicationPool $applicationPool -DatabaseName 'Managed Metadata Service_DB'
3. New-SPMetadataServiceApplicationProxy -Name ProxyName -ServiceApplication $mms -DefaultProxyGroup
To upgrade the User Profile service application by using Windows PowerShell
1. $applicationPool = Get-SPServiceApplicationPool -Identity 'SharePoint Web Services default'
2. $upa = New-SPProfileServiceApplication -Name 'User Profile Service Application' -ApplicationPool $applicationPool -ProfileDBName 'User Profile Service Application_ProfileDB' -SocialDBName 'User Profile Service Application_SocialDB' -ProfileSyncDBName 'User Profile Service Application_SyncDB'
3. New-SPProfileServiceApplicationProxy -Name ProxyName -ServiceApplication $upa -DefaultProxyGroup
To import the encryption key for User Profile service application
1. Verify that you have the following memberships:
•Administrators group on the server on which you are running the command.
2. Open the Command Prompt window, and then change to the following folder:
%Program Files%\Microsoft Office Servers\15.0\Synchronization Service\Bin\
3. To import the key, type the following at the command prompt, and then press ENTER:
miiskmu.exe /i Path {0E19E162-827E-4077-82D4-E6ABD531636E}
•Path is the path and file name for the key that you want to import.
You might also have to enter a user name and password. These are the credentials for the farm administrator.
Start the User Profile Synchronization service
- Start SharePoint 2013 Central Administration.
- For Windows Server 2008 R2:
- Click Start, click Microsoft SharePoint 2013 Products, and then click SharePoint 2013 Central Administration.
- For Windows Server 2012:
- On the Start screen, click SharePoint 2013 Central Administration.
If SharePoint 2013 Central Administration is not on the Start screen:
- Right-click Computer, click All apps, and then click SharePoint 2013 Central Administration.
- In Central Administration, on the System Settings page, under Servers click Manage services on Server.
- Next to the User Profile Synchronization Service, click Start.
- In the Select the User Profile Application section, select the User Profile service application that you upgraded.
- In the Service Account Name and Password section, type the account name and password to use for the User Profile Synchronization service.
To upgrade the PerformancePoint Services service application by using Windows PowerShell
1. $applicationPool = Get-SPServiceApplicationPool -Identity 'SharePoint Web Services default'
2. $pps = New-SPPerformancePointServiceApplication -Name 'PerformancePoint Service' -ApplicationPool $applicationPool -DatabaseName 'PerformancePoint Service Application_DB'
3. New-SPPerformancePointServiceApplicationProxy -Name ProxyName -ServiceApplication $pps -Default
To upgrade the Search service application by using Windows PowerShell
1. $applicationPool = Get-SPServiceApplicationPool -Identity 'SharePoint Web Services default'
$searchInst = Get-SPEnterpriseSearchServiceInstance -local
# Gets the Search service instance and sets a variable to use in the next command
Restore-SPEnterpriseSearchServiceApplication -Name '<SearchServiceApplicationName>' -applicationpool $applicationPool -databasename '<SearchServiceApplicationDBName>' -databaseserver <ServerName> -AdminSearchServiceInstance $searchInst
2. $ssa = Get-SPEnterpriseSearchServiceApplication
3. New-SPEnterpriseSearchServiceApplicationProxy -Name ProxyName -SearchApplication $ssa
4. $ssap = Get-SPEnterpriseSearchServiceApplicationProxy
5. Add-SPServiceApplicationProxyGroupMember –member $ssap -identity " "