Step by step create ‘App Management' service application
Way 1: Central Administration
1. In SharePoint 2013 central administration, click on "Application Management", then on "Manage Service Applications"
2. Click on "New", then on "App Management Service"
3. Type a name for the service application and its database
Type a name for the application pool and the account used by the pool.
Uncheck the checkbox if you do not want to create a proxy for the service application, then click on "OK".
4. The service application and its proxy are created
5. The last action is to start the "App Management Service" service.
Click on "Application Management", then on "Manage services on server"
6. Click on "Start" in front of the service
Way 2: PowerShell
1. Open SharePoint 2013 "Management Shell"
2. To get the Farm account
$account = Get-SPManagedAccountFarmAccount
3. Using farm account create a new application pool
$appPoolAppSvc = New-SPServiceApplicationPool -Name AppServiceAppPool -Account $account
4. Using new application pool create the "App management" service application
$appAppSvc = New-SPAppManagementServiceApplication -ApplicationPool $appPoolAppSvc -Name AppServiceApp -DatabaseNameNomDeLaBDD
5. Create a proxy for the service application
$proxyAppSvc = New-SPAppManagementServiceApplicationProxy -ServiceApplication $appAppSvc
6. Now start the "App Management Service" service
Get-SPServiceInstance | where-object {$_.TypeName -eq "App Management Service"}
(Get-SPServiceInstance | where-object {$_.TypeName -eq "App Management Service"}).Provision()
Get-SPServiceInstance | where-object {$_.TypeName -eq "App Management Service"}
Thank you very much
Fahadullah Karimi
SharePoint Specialist
Auto-Refresh a SharePoint 2013 Page | Step by Step Install and configure SharePoint 2013 Workflow |
No comments:
Post a Comment