To create a forward lookup zone for the app domain name
- Verify that the user account that performs this procedure is a local administrator on the domain controller.
- Click Start, point to Administrative Tools, and then click DNS.
- In DNS Manager, right-click Forward Lookup Zones, and then click New Zone….
- In the New Zone Wizard, click Next.
- In the Zone Type page, accept the default of Primary zone, and then click Next.
- In the Active Directory Zone Replication Scope page, select the appropriate replication method for your environment (the default is To all DNS servers in this domain), and then click Next.
- In the Zone Name page, in the Zone name box type the name for your new app domain name (for example, ContosoApps.com), and then click Next.
The New Zone Wizard shows the new domain name for apps.
- On the Dynamic Update page, select the appropriate type of dynamic updates for your environment (the default is Do not allow dynamic updates), and then click Next.
- On the Completing the New Zone Wizard page, review the settings, and then click Finish.
You have now created a forward lookup zone (and a domain name) to use for apps in your environment.
To create a wildcard Alias (CNAME) record for the new domain name
- Verify that the user account that performs this procedure is a local administrator on the domain controller.
- In DNS Manager, under Forward Lookup Zones, right-click the new app domain name, and then click New Alias (CNAME).
- In the New Resource Record dialog box, in the Alias name (uses parent domain if left blank) box, type *.
The Fully qualified domain name (FQDN) box displays *. followed by the domain name that you created for apps. For example, *.ContosoApps.com or *.Contoso-Apps.com. - Next to the Fully qualified domain name (FQDN) for target host box, type the FQDN of the server that hosts the SharePoint sites.
For example, SharePoint.Contoso.com.
Or:
- Next to the Fully qualified domain name (FQDN) for target host box, click Browse and navigate to the Forward Lookup Zone for the domain that hosts the SharePoint sites.
For example, Contoso.com. - And then navigate to the record that points to the server that hosts the SharePoint site.
For example, SharePoint.
- Next to the Fully qualified domain name (FQDN) for target host box, click Browse and navigate to the Forward Lookup Zone for the domain that hosts the SharePoint sites.
- Click OK.
You can verify the new domain name and alias by pinging them.
To verify the new domain name
- Verify that the user account that is performing this procedure is a local administrator on the domain controller.
- Click Start, and then click Command Prompt.
- At the command prompt, type ping followed by a subdomain of the domain that you created, and then press ENTER.
For example, ping Apps-12345678ABCDEF.contosoapps.com
If the ping command returns the correct IP address, then your wildcard for the domain name was configured successfully.
Create a new wildcard SSL certificate
If you are using Secure Sockets Layer (SSL) for the SharePoint sites in your environment, or if you use any apps that use data external to the SharePoint sites, you should use SSL for your apps. To use SSL, you create an SSL certificate for your app domain (for example, ContosoApps.com).
The domain should be added in the form of a wildcard (for example, *.ContosoApps.com). You need a wildcard certificate instead of individual certificates because each installed app has its own subdomain.
The domain should be added in the form of a wildcard (for example, *.ContosoApps.com). You need a wildcard certificate instead of individual certificates because each installed app has its own subdomain.
Configure the Subscription Settings and App Management service applications
Apps rely on the App Management and Microsoft SharePoint Foundation Subscription Settings service applications. These service applications use the multi-tenancy features to provide app permissions and create the subdomains for apps. Therefore, even if you are not hosting multiple tenants, you must still establish a name for the default tenant for your environment (any SharePoint site that is not associated with a tenant will be in the default tenant).
To configure these services, you first start the services in Central Administration. After the services are started, you use Windows PowerShell to create the Subscription Settings service application, and then use either Windows PowerShell or Central Administration to create the App Management service application.
You can use either Windows PowerShell or Central Administration to create and configure the App Management service application. The following procedures provide the steps for each method.
![]() |
---|
You can use the SharePoint Central Administration website to set the default tenant name (also know as the app prefix) for non-hosting environments. You must use Windows PowerShell to configure tenant names for hosting environments. You perform the steps to set the app prefix in the next section, Configure the app URLs to use. |
To start the Subscription Settings and App Management services in Central Administration
- Verify that you are a member of the farm administrators group in Central Administration.
- In SharePoint 2013 Central Administration, click System Settings.
- On the System Settings page, under Servers, click Manage services on server.
- On the Services on Server page, next to App Management Service, click Start.
- On the Services on Server page, next to Microsoft SharePoint Foundation Subscription Settings Service, click Start.
- Verify that the App Management and Microsoft SharePoint Foundation Subscription Settings services are running. The following illustration shows the Services on Server page where you can verify that the App Management and Subscription Settings services are running.
Services on Server showing the App Management and Subscription Settings services running.
To configure the Subscription Settings service application by using Windows PowerShell
- 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.
Note:
If you do not have permissions, contact your Setup administrator or SQL Server administrator to request permissions. For additional information about Windows PowerShell permissions, see Add-SPShellAdmin. - On the Start menu, click All Programs.
- Click Microsoft SharePoint 2013 Products.
- Click SharePoint 2013 Management Shell.
- First you must establish the application pool, run as account, and database settings for the services. Use a managed account for the SPManagedAccount (which will be used for the application pool runas account).
At the Windows PowerShell command prompt, type the following commands, and press ENTER after each one to create the application pool:
$account = Get-SPManagedAccount "<AccountName>" # Gets the name of the managed account and sets it to the variable $account for later use.
Where:
- <AccountName> is the name of the managed account in the SharePoint farm.
$appPoolSubSvc = New-SPServiceApplicationPool -Name SettingsServiceAppPool -Account $account # Creates an application pool for the Subscription Settings service application. # Uses a managed account as the security account for the application pool. # Stores the application pool as a variable for later use.
- At the Windows PowerShell command prompt, type the following commands, and press ENTER after each one to create the new service application and proxy:
$appSubSvc = New-SPSubscriptionSettingsServiceApplication –ApplicationPool $appPoolSubSvc –Name SettingsServiceApp –DatabaseName <SettingsServiceDB> # Creates the Subscription Settings service application, using the variable to associate it with the application pool that was created earlier. # Stores the new service application as a variable for later use.
Where:
- <SettingsServiceDB> is the name of the Subscription Settings service database.
$proxySubSvc = New-SPSubscriptionSettingsServiceApplicationProxy –ServiceApplication $appSubSvc # Creates a proxy for the Subscription Settings service application.
To configure the App Management service application by using Windows PowerShell
- 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.
Note:
If you do not have permissions, contact your Setup administrator or SQL Server administrator to request permissions. For additional information about Windows PowerShell permissions, see Add-SPShellAdmin. - On the Start menu, click All Programs.
- Click Microsoft SharePoint 2013 Products.
- Click SharePoint 2013 Management Shell.
- First you must establish the application pool, run as account, and database settings for the services. Use a managed account for the SPManagedAccount (which will be used for the application pool runas account).
At the Windows PowerShell command prompt, type the following commands, and press ENTER after each one to create the application pool:
$account = Get-SPManagedAccount "<AccountName>" # Gets the name of the managed account and sets it to the variable $account for later use.
Where:
- <AccountName> is the name of the managed account in the SharePoint farm.
$appPoolAppSvc = New-SPServiceApplicationPool -Name AppServiceAppPool -Account $account # Creates an application pool for the Application Management service application. # Uses a managed account as the security account for the application pool. # Stores the application pool as a variable for later use.
- At the Windows PowerShell command prompt, type the following commands, and press ENTER after each one to create the new service application and proxy:
$appAppSvc = New-SPAppManagementServiceApplication -ApplicationPool $appPoolAppSvc -Name AppServiceApp -DatabaseName <AppServiceDB> # Creates the Application Management service application, using the variable to associate it with the application pool that was created earlier. # Stores the new service application as a variable for later use.
Where:
- <AppServiceDB> is the name of the App Management service database.
$proxyAppSvc = New-SPAppManagementServiceApplicationProxy -ServiceApplication $appAppSvc # Creates a proxy for the Application Management service application.
To create the App Management service application in Central Administration
- In SharePoint 2013 Central Administration, on the Application Management page, click Manage service applications.
- On the ribbon, click New, and then click App Management Service.
- In the New App Management Service Application page, in the Service Application Name box, type the name for the service application.
- In the Database section, in the Database Server box, type the instance of SQL Server where you want to store the database, or use the default server.
- In the Database Name box, type a database name, or use the default name.
The database name must be unique. - Under Database authentication, select the authentication that you want to use by doing one of the following:
- If you want to use Windows authentication, leave this option selected. We recommend this option because Windows authentication automatically encrypts the password when it connects to SQL Server.
- If you want to use SQL authentication, click SQL authentication. In the Account box, type the name of the account that you want the service application to use to authenticate to the SQL Server database, and then type the password in the Password box.
Note:
In SQL authentication, an unencrypted password is sent to SQL Server. We recommend that you use SQL authentication only if you force protocol encryption to SQL Server or encrypt network traffic by using IPsec.
- In the Failover Database Server section, if you want to use a failover database server, specify the server name.
- In the Application Pool section, do one of the following:
- Click Use existing application pool, and then select the application pool that you want to use from the drop-down list.
- Click Create a new application pool, type the name of the new application pool, and then under Select a security account for this application pool do one of the following:
- Click Predefined to use a predefined security account, and then select the security account from the drop-down list.
- Click Configurable to specify a new security account to be used for an existing application pool. You can create a new account by clicking the Register new managed account link.
- In the Create App Management Service Application Proxy section, leave the Create App Management Service Application Proxy and add it to the default proxy group check box selected.
- Click OK.
The following illustration shows the App Management service application and proxy that were created.
Manage Service Applications page showing the App Management service application and proxy.
Now you must start the service on the server.
- In SharePoint 2013 Central Administration, click System Settings.
- On the System Settings page, under Servers, click Manage services on server.
- On the Services on Server page, next to App Management Service, click Start.
Configure the app URLs to use
In this section, you create the app domain prefix and the tenant name to use for apps in your environment. The app URL points to your app domain and a prefix that determines how each app is named. If you host multiple tenants in your environment, you must use Windows PowerShell to configure the app URLs.
Use the following procedure to configure app URLs for non-hosting (single tenant) environments by using Central Administration.
Use the following procedure to configure app URLs for multi-tenant hosting environments.
Use the following procedure to configure app URLs for non-hosting (single tenant) environments by using Central Administration.
To configure app URLs
- In Central Administration, click Apps.
- On the Apps page, click Configure App URLs.
- In the App domain box, type the isolated domain that you created for hosting apps.
For example, ContosoApps.com or Contoso-Apps.com. - In the App prefix box, type a name to use for the URL prefix for apps.
For example, you could use “apps” as the prefix so that you would see a URL for each app such as “apps-12345678ABCDEF.ContosoApps.com”. The following illustration shows the Configure App URLs page after you have filled in the App domain and prefix.
The Configure App URLs page in Central Administration shows the App domain and App prefix.
- Click OK.
- If you will install apps and you have changed the App prefix (also known as the site subscription name), you must perform additional steps that involve restarting the World Wide Web Publishing Service (WWW Service) that hosts the apps.
Important:
Restarting the WWW Service will also restart the IIS Admin Service and the Windows Process Activation Service. This will also shut down all Web sites and applications that depend on these services and they may lose existing state and will be unavailable until the services successfully restart. You should plan to perform these steps during a planned maintenance time.
To complete the App prefix rename tasks, perform these steps:
- Stop the SharePoint Timer service.
- Restart the World Wide Web Publishing Service that hosts the apps.
- Start the SharePoint Timer service.
To configure app URLs by using Windows PowerShell
- 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.
Note:
If you do not have permissions, contact your Setup administrator or SQL Server administrator to request permissions. For additional information about Windows PowerShell permissions, see Add-SPShellAdmin. - On the Start menu, click All Programs.
- Click Microsoft SharePoint 2013 Products.
- Click SharePoint 2013 Management Shell.
- At the Windows PowerShell command prompt, type the following commands and press ENTER after each one:
Set-SPAppDomain <appDomain>
Set-SPAppSiteSubscriptionName -Name "app" -Confirm:$false
Where:
- <appDomain> is the domain name that you created.
- If you will install apps and you have changed the App prefix (also known as the site subscription name), you must perform additional steps that involve restarting the World Wide Web Publishing Service (WWW Service) that hosts the apps.
Important:
Restarting the WWW Service will also restart the IIS Admin Service and the Windows Process Activation Service. This will also shut down all Web sites and applications that depend on these services and they may lose existing state and will be unavailable until the services successfully restart. You should plan to perform these steps during a planned maintenance time.
To complete the App prefix rename tasks, perform these steps:
- Stop the SharePoint Timer service.
- Restart the World Wide Web Publishing Service that hosts the apps.
- Start the SharePoint Timer service.
Configure the Internet-facing endpoints feature (Optional)
The SharePoint Store contains apps for SharePoint intended for use with sites that require Internet-facing endpoints. By default, these apps are not available (greyed out and cannot be purchased) because they are incompatible with most sites. However, if your farm is configured to allow internet-facing end points, you can turn on the Internet-facing endpoints feature to show these apps in the SharePoint Store. You turn this feature on in Central Administration.
Reference From below mention site...
http://technet.microsoft.com/en-us/library/fp161236.aspx
To configure Internet-facing endpoints for apps
- In Central Administration, click Application Management.
- On the Application Management page, click Manage Web applications.
- On the Manage Web Applications page, select the web application that you want to change.
- On the ribbon, click Manage Features.
- In the feature list, next to Apps that require accessible internet facing endpoints, click Activate.
- Click OK.
Reference From below mention site...
http://technet.microsoft.com/en-us/library/fp161236.aspx
No comments:
Post a Comment