Wednesday, January 22, 2014
SharePoint 2013: How to Configure the Business Data Catalog Service Application using PowerShell
Description
This post describes how to configure the SharePoint Server 2013 Business Data Catalog Service Application using PowerShell.
Solution
1) Document the Naming Convention
Determine a naming convention for each of the Service Application components. Document the naming convention.
Application Pool: SvcApp_SPServiceApplicationPool_01
Application Pool Service Account: Domain\SvcAccount
Application: SvcApp_SPBusinessDataCatalogServiceApplication_01
Proxy: SvcApp_SPBusinessDataCatalogServiceApplication_01_Proxy_01
Database: SvcApp_SPBusinessDataCatalogServiceApplication_01_DB_01
2) Prepare the Application Pool / Service Account
Example: Subscription Settings Application Pool: SvcApp_SPServiceApplicationPool_01 Application Pool Service Account: Domain\SvcAccount
A) If you are using an existing application pool:
You do not need to create a Service Account nor an Application Pool. Note the names of each.
Verify Application Pool.
Get-SPServiceApplicationPool | Select Name
Get the existing Application Pool.
$SvcAppPool = Get-SPServiceApplicationPool "SvcApp_SPServiceApplicationPool_01"
B) If you are creating a new application pool:
Determine which service account you will use to run the application pool that will be assigned to the. If you need to, create and register a service account to run the Subscription Settings Service Application.
Create the Service Application Pool and register it to the Service Account.
$SvcAppPool = New-SPServiceApplicationPool -Name "SvcApp_SPServiceApplicationPool_01"$AppPool = New-SPServiceApplicationPool -Account (Get-SPManagedAccount Domain\SvcAccount)
Verify Application Pool.
Get-SPServiceApplicationPool | Select Name
Get the existing Application Pool.
$SvcAppPool = Get-SPServiceApplicationPool "SvcApp_SPServiceApplicationPool_01"
3) Open the SharePoint 2013 Management Shell as Administrator.
4) Create the Service Application and assign it to the Application Pool.
$SvcApp = New-SPBusinessDataCatalogServiceApplication –ApplicationPool $SvcAppPool -Name "SvcApp_ SPBusinessDataCatalogServiceApplication _01" -DatabaseName "SvcApp_ SPBusinessDataCatalogServiceApplication _01_DB_01"
Verify Service Application.
Get-SPServiceApplication | Select Name
5) Create the Service Application Proxy and assign it to the Service Application.
$SvcAppProxy = New-SPBusinessDataCatalogServiceApplicationProxy -Name "SvcApp_SPBusinessDataCatalogServiceApplication_01_Proxy_01" -ServiceApplication $SvcApp
Verify Service Application Proxy.
PS C:\ Get-SPServiceApplicationProxy | Select Name
References
Microsoft TechNet (2012). New-SPBusinessDataCatalogServiceApplication. Retrieved January 22, 2014 from http://technet.microsoft.com/en-us/library/ff607899.aspx.
Microsoft TechNet (2012). New-SPBusinessDataCatalogServiceApplicationProxy. Retrieved January 22, 2014 from http://technet.microsoft.com/en-us/library/ff607952.aspx.
Microsoft TechNet (2012). Service application cmdlets in SharePoint 2013. Retrieved January 22, 2014 from http://technet.microsoft.com/en-us/library/ee906561.aspx.
Microsoft TechNet (2012). SharePoint 2013 - Service Applications. Retrieved January 22, 2014 from http://social.technet.microsoft.com/wiki/contents/articles/12512.sharepoint-2013-service-applications.aspx.
Subscribe to:
Post Comments (Atom)
Blog Archive
-
▼
2014
(24)
-
▼
January
(15)
- SharePoint 2013: Set-SPEnterpriseSearchTopology : ...
- SharePoint 2013: How to Rename the Search Service ...
- SharePoint 2013: How to Configure the Search Servi...
- Solution for Site Collection Lock, Missing Site Se...
- SharePoint 2013: How to Configure the Machine Tran...
- SharePoint 2013: How to Configure the PerformanceP...
- SharePoint 2013: How to Configure the Word Automat...
- SharePoint 2013: How to Configure the Excel Servic...
- SharePoint 2013: How to Configure the Access Servi...
- SharePoint 2013: How to Configure the Metadata Ser...
- SharePoint 2013: How to Configure the Business Dat...
- SharePoint 2013: How to Configure the Usage Servic...
- SharePoint 2013: How to Configure Secure Store Ser...
- SQL Server 2012: SELECT Machine Name, Server Name...
- How to Associate SQL Server Login with Existing Da...
-
▼
January
(15)
Events / Conferences / User Groups
- AIIM Conference
- Boston Area SharePoint User Group
- Boston Azure User Group
- Collaborate
- DevConnections
- DevIntersection
- Enterprise Search Summit
- Microsoft Build
- Microsoft SharePoint Conference
- Microsoft TechEd
- New England ASP.NET Professionals User Group
- New England Oracle Applications User Group
- Oracle Applications User Group (OAUG)
- Oracle OpenWorld
- PeopleSoft Government Contractor Special Interest Group
- PeopleSoft Southern New England Users Group
- Quest International Users Group
- SharePoint Saturday
- SPTechCon
- SQL PASS
- SQL Saturday
- Startup Weekend
No comments:
Post a Comment