While working with share point 2013 app we need to configure the app URL for share point admin.There are lot of blogs which give you the information related to it. You need to configure the DNS for APP then need to start the App service and subscription service.
I did all these steps but when I tried configure the URL for app from App navigation section I got the following error
"SharePoint The Subscription Settings service and corresponding application and proxy needs to be running in order to make changes to these settings"
The issue with this is expecting A new service application created on its dedicated App Pool is required to be created in SharePoint
This can be done using Power shell script running with administrator account
add-pssnapin "Microsoft.Sharepoint.Powershell"
$manaccount = Get-SPManagedAccount SP2013Server\Administrator
Remove-SPServiceApplicationPool -Identity SettingsServiceAppPool
$appPoolService = New-SPServiceApplicationPool -Name SettingsServiceAppPool -Account $manaccount
$appService = New-SPSubscriptionSettingsServiceApplication -ApplicationPool $appPoolService -Name SettingsServiceApp -DatabaseName SettingsServiceDB
$proxyService = New-SPSubscriptionSettingsServiceApplicationProxy -ServiceApplication $appService
After executing above script you are able to configure the url for app
I did all these steps but when I tried configure the URL for app from App navigation section I got the following error
"SharePoint The Subscription Settings service and corresponding application and proxy needs to be running in order to make changes to these settings"
The issue with this is expecting A new service application created on its dedicated App Pool is required to be created in SharePoint
This can be done using Power shell script running with administrator account
add-pssnapin "Microsoft.Sharepoint.Powershell"
$manaccount = Get-SPManagedAccount SP2013Server\Administrator
Remove-SPServiceApplicationPool -Identity SettingsServiceAppPool
$appPoolService = New-SPServiceApplicationPool -Name SettingsServiceAppPool -Account $manaccount
$appService = New-SPSubscriptionSettingsServiceApplication -ApplicationPool $appPoolService -Name SettingsServiceApp -DatabaseName SettingsServiceDB
$proxyService = New-SPSubscriptionSettingsServiceApplicationProxy -ServiceApplication $appService
After executing above script you are able to configure the url for app
1 comment:
It solve my issue. but still i doesn't understand what is real issue?
Post a Comment