1 / 21

SharePoint Saturday Baltimore 2013 2013 SharePoint App Store– Configuration

SharePoint Saturday Baltimore 2013 2013 SharePoint App Store– Configuration. By: Toby McGrail Sr. Software Engineer. Agenda. Introduction What is the SharePoint 2013 App Store Where are the Apps Hosted? How are Apps and SharePoint Sites Related? Governance Choices for Apps?

fox
Télécharger la présentation

SharePoint Saturday Baltimore 2013 2013 SharePoint App Store– Configuration

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. SharePoint Saturday Baltimore 2013 2013 SharePoint App Store– Configuration By:Toby McGrailSr. Software Engineer

  2. Agenda • Introduction • What is the SharePoint 2013 App Store • Where are the Apps Hosted? • How are Apps and SharePoint Sites Related? • Governance Choices for Apps? • Configure DNS Entries • DNS Server Configuration • DNS Example • Verify the DNS Entry • SSL Configuration • Configure 2013 SharePoint Services • Configure the Subscription Settings Service • Configure the App Management Service • Configure the App URL’s • Creating the Corporate Catalog • Configure App Settings • Common Problems • Questions?

  3. Introduction • My name is Toby McGrail and I have been a Senior SharePoint Administrator over the last three years however been deeply involved in SharePoint for 8 years and counting. • Outside of SharePoint I have balanced lifestyle that includes my family, friends, and Fitness. Fitness and SharePoint are my passion. • Over 20 years IT Experience

  4. What is the 2013 SharePoint App Store? The apps for SharePoint 2013 provides an exciting new method to deliver important data or custom functionality to a SharePoint site that is not an OOB Feature or Solution. • An app for SharePoint is a small, easy-to-use, stand-alone app that solves a specific end-user or business requirements. • Site owners can now discover and download apps for SharePoint from a public SharePoint Store or from their organization's internal App Catalog and install them on their SharePoint sites. In the past organizations had to spend Thousands of Dollars for this customization • These apps for SharePoint integrate the best of the web with SharePoint 2013. They do not replace SharePoint features and solution packages, which customize or enhance SharePoint sites. • Unlike features and solutions, which farm or site collection administrators have to install, apps for SharePoint are stand-alone applications that owners of sites can add to their SharePoint sites. The apps for SharePoint have a simple lifecycle - they can be installed, upgraded, and uninstalled by site owners. This provides a more enhanced End User Experience.

  5. Where are the Apps Hosted? • Where are apps for SharePoint hosted? • Provider Hosted such as Rackspace, FPWeb or any External Hosting Company • Hosted in the cloud (Windows Azure autohosted) • Hosted in a SharePoint environment • Several combinations of these options. • Depending on the hosting option, the app can contain different elements and take advantage of different components. • Illustration of hosting options for apps for SharePoint

  6. How are Apps and SharePoint Sites Related? • Site owners can add apps for SharePoint to their sites. If an app contains SharePoint components, those components are stored in a subweb of the site that is automatically created when you install the app. Apps have their own, isolated URLs, which are separate from the URL for the site that contains the app. • If the app is a Provider-hosted or Windows Azure autohosted app, the app components are stored in those locations.

  7. Governance choices for apps for SharePoint Governance Choices for Apps

  8. Configure DNS Entries • Configure DNS entries: Lets start with a little background on why its Important • Each installation of an app has a unique URL in your environment. You decide the template for that URL (by determining a domain name and an app prefix), and then the app URLs are automatically generated based on the specific template • Paths for the apps are based on the URL for the site in the location where they are installed. • When you install an app to a site, a SubWeb of that site is created to host the app content. The SubWeb for the app is hierarchically below the site collection, but has an isolated unique host header instead of being under the site’s URL. • It is HIGHLY recommended to configure a separate DNS for your apps. The difference in domain names provides a layer of isolation for the apps. The use of a different domain name from the SharePoint sites prevents cross-site scripting between the apps and sites and unauthorized access to users’ data. • Now lets Configure the DNS

  9. DNS Server Configuration • Our first step will be to create the wildcard domain that we will be using to host our app • Start DNS Manager from Administrative Tools. Right click in the details pane and select “New Alias (CNAME)".

  10. DNS Server Configuration • In the “New Resource Record” enter the *.apps in “Alias name” option. ‘*’ is used to create a wild card or catch all domain. Select “Browse” and Navigate to the fully qualified parent domain which is “tobymcgrail.com” in our case. Select OK. Review the resource record and select OK to create this record

  11. Verify the DNS Entry • Next, lets verify our wild card domain. Start Powershell or a command prompt and ping to apps.tobymcgrail.com(whatever you have set it here . This should be successful.

  12. SSL Configuration • Please rememeber if you are using SSL, please refer to Technet article for configuration http://technet.microsoft.com/en-us/library/fp161236(v=office.15) for more information on SSL configuration.

  13. Configure SharePoint 2013 Services • Enable Services on the server: • Go to “Central Administration –> System Settings –> Manage Services on server” and ensure that the “App Management Service” and “Microsoft SharePoint Foundation Subscription Settings Service” services are started and Running

  14. Configure the Subscription Settings service application and proxy • It is highly suggested that you automate this process with my best friend Mr. Powershell! • You can do so by running the following commands in the SharePoint 2013 Management Shell (PowerShell) – examples below assume you are using the VM downloaded through my blog post: • $account = Get-SPManagedAccount “<farm account>” • Where: <farm account> is the name of the Farm administrators account in the SharePoint farm • Example: $account = Get-SPManagedAccount “sp_farm” • $appPoolSubSvc = New-SPServiceApplicationPool -Name SettingsServiceAppPool -Account $account • $appSubSvc = New-SPSubscriptionSettingsServiceApplication –ApplicationPool $appPoolSubSvc –Name SettingsServiceApp –DatabaseName <SettingsServiceDB> • Where: <SettingsServiceDB> is the name that you’d like to give to the new Subscription Settings Service database that the above command will create • Example: $appSubSvc = New-SPSubscriptionSettingsServiceApplication –ApplicationPool $appPoolSubSvc –Name SettingsServiceApp –DatabaseNameApp_SubscriptionSettingsService • $proxySubSvc = New-SPSubscriptionSettingsServiceApplicationProxy –ServiceApplication $appSubSvc

  15. Configure the App Management service application and proxy • Again it’s the Caped Crusader “Powershell Man” to the Rescue. • $account = Get-SPManagedAccount “<farm account>” • Where: <farm account> is the name of the Farm administrators account in the SharePoint farm • Example: $account = Get-SPManagedAccount “sp_farm” • $appPoolAppSvc = New-SPServiceApplicationPool -Name TobyAppsSrvAppPool-Account $account • $appAppSvc = New-SPAppManagementServiceApplication -ApplicationPool $appPoolAppSvc -Name TobyServiceApp-DatabaseName <AppServiceDB> • Where: <AppServiceDB> is the name that you’d like to give to the new App Management Service database that the above command will create • Example: $appSubSvc = New-SPSubscriptionSettingsServiceApplication –ApplicationPool $appPoolSubSvc –Name SettingsServiceApp –DatabaseNameApp_AppManagmentService • $proxyAppSvc = New-SPAppManagementServiceApplicationProxy -ServiceApplication $appAppSvc

  16. Configure the App Management service application and proxy • Now lets head back to Central Administration and check out the Service Applications.

  17. Configure App URLs • Now Lets Head back to Central Admin to configure the App Url’s • First we need to browse to “Central Administration > Apps > Configure App URLs” and enter the wildcard CNAME entry that you created above along with an app as seen here:

  18. Creating Corporate Catalog • Now its time to create a “Corporate Catalog” site that we will use in configuration App Store. The app catalog site contains catalogs for apps for SharePoint and Office. You can use this site to make apps available to end users if they are no allowed to add apps on their own. • Select “Create a new app catalog site” option and select “OK”.You will see “Create App Catalog” screen. Specify the following information and select OK. It might take a while so stay patient.Title and Description: App CatalogWeb Site Address: http://tobymcgrail.com:2020/sites/appsPrimary Site Collection Administrator SPTOBY\SPADMINEnd Users: EveryoneQuote Template: None

  19. Configure Apps Settings • First we will go to Central Admin and click on the quick launch on Apps. Select App Management –> Manage App Catalog and verify that the App Catalog Site we created is set correctly. Select the “Apps” link in Quick Launch again. Select “Configure App URLs. • Select SharePoint and Office Store –> Configure Store Settings. If you don’t want your end users to be able to get apps from the SharePoint store, select “No”. • In a Enteprise level Production Environment its notthe best idea to allow end-users install the apps. They can request the apps and admins can install it. Select OK.

  20. Common Problems • Sorry, apps are turned off. If you know who runs the server, tell them to turn on the App Management Shared ServiceThis error can happen when incorrect configuration of service applications mentioned in the article. Solution to this problem is to remove the existing App Management Service application and creating it using SharePoint 2013 Management Shell. You may also be missing the App Domain and App Prefix settings in the “Configure App URLs page”. Double to check to see if you havacorrect URL for apps using the information provided above. • The Corporate Curated Gallery Settings feature is not activated on current web applicationFirst place tocheck is by activating the CorporateCuratedGallerySettingsfeature. Enable-SPFeature-Identity "CorporateCuratedGallerySettings” -url "http://<yoursite>” • Corporate Catalog has not been created for the current Web applicationYou may notice this error in the SharePoint log files. This can be resolved by creating the App Catalog site.

  21. Questions • Do you have any issues that you have seen that we have not covered • My Blog • http://tobymcgrail.com:2020/SPADMIN • References • http://tobymcgrail.com • http://technet.microsoft.com/en-us/library/fp161236.aspx • http://technet.microsoft.com/en-us/library/fp161237.aspxbbbbbbbbbb • Contact Information: • Toby McGrail – tmcgrail@microlinkllc.com

More Related