Configuring BizTalk Server 2013 Developer Azure Gallery Image

Posted: May 18, 2014  |  Categories: Azure BizTalk Uncategorized
Tags:
 Published by: Bill Chesnut

Once you have created a Azure IaaS machine using the BizTalk Server 2013 Developer Azure Gallery Image, there is still a bit off configuration that needs to be done:

image

This is what your new Desktop will look like

Below are Install instruction specific to this Azure Gallery Image and my method of configuration, see the BizTalk 2013 Installation guides for complete installation instructions

Finish SQL Server Configuration

Update the SQL Server name

Open Microsoft SQL Server Management Studio and verify the SQL Server Name:

SNAGHTMLc6626b3

Update the SQL Server name to the name you gave your image:

using script:

sp_dropserver <old_name\instancename>; 
GO 
sp_addserver <new_name\instancename>, local; 
GO

Example:

SNAGHTMLc6591b7

Set SQL Agent to Automatically Start

Open the SQL Server Configuration Manager, Verify the SQL Server Agent is set to Manual

image

Right Click on the SQL Server Agent and Select Properties

image

Click the Service Tab

image

Click the Start Mode and Select Automatic, Click OK

image

Right Click on SQL Server Agent, Click Start

image

Verify the SQL Server Agent is Running

image

Update SQL Client Protocols

In the SQL Server Configuration Manager, Disable Shared Memory for both 32 and 64 Client

image

image

In Protocols for MSSQLSERVER, enable Named Pipes and TCP/IP and disable Shared Memory

image

Restart SQL Server to complete changes

Configure BizTalk

Double Click on Configuration – Shortcut on the desktop, enter User Name and Password, Click Configure

image

Click Next, Wait for Configuration to Complete

image

Check the Launch Custom Configuration, if needed, Click Finish

image

Install LOB Adapters

From c:\BizTalkServer2013_Developer run Setup.exe, Select Install BizTalk Adapters

image

Install Microsoft WCF LOB Adapter SDK, by Clicking the Link and following the Wizard

image

Install Microsoft BizTalk Adapter Pack, by Clicking the Link and following the Wizard

image

Install Microsoft BizTalk Adapter Pack(x64), by Clicking the Link and following the Wizard

image

Install Microsoft BizTalk Adapters for Enterprise Applications (if required), by Clicking the Link and following the Wizard

image

Exit when complete, Add New Adapters in the Adapters section of the Platform Setting in the BizTalk Server Administration Console

Option Installation and Configuration

ESB Toolkit

From c:\BizTalkServer2013_Developer run Setup.exe, Select Install BizTalk ESB Toolkit, follow the wizard

image

Select the ESB Configuration from the Windows Start Screen, Enter the Database Server (name of your machine), the User Account and Password and Click ESB BizTalk Applications

image

Check the Enable ESB Core Components in the BizTalk Server and Click Apply Configuration

image

Database SQL Agent Jobs

On a developer machine I typically set all the BizTalk Databases to simple recover mode so I don’t have to configure the BizTalk Server Backup Job

image

DTA Purge and Archive SQL Agent Job

To keep the developer machine clean I also use the following script to just purge the DTA (Tacking) Database, This keeps 10 days of Tracking Data

declare @dtLastBackup datetime 
set @dtLastBackup = GetUTCDate() 
exec dtasp_PurgeTrackingDatabase 1, 10, 11, @dtLastBackup
 
image

finished the basic Then Enable the DTA Purge and Archive Job

 
image

Conclusion

This finished the basic configuration with a few extra, if you are using BizUnit, BTDF or any other tools, you will need to install them now.

I hope this instruction and screen shots help you get your BizTalk Server 2013 Developer Azure Gallery Image up and running smoothly

#1 all-in-one platform for Microsoft BizTalk Server management and monitoring
turbo360

Back to Top