it:ad:service_bus_for_windows:howto:install

IT:AD:Service Bus for Windows:HowTo:Install

Summary

Follow the instructions given here: * https://msdn.microsoft.com/en-us/library/jj192997.aspx

The conclusion will be:

Start a New Web Farm

After installing it, you can use the dedicated Powershell scripts to configure it: * https://msdn.microsoft.com/en-us/library/jj193018.aspx

100

Start a new `Web Farm`

$CertAutoGenerationKey = ConvertTo-SecureString -AsPlainText –Force -String "{your strong password}"

New-SBFarm 
     -AdminGroup:'BUILTIN\Administrators'
     -SBFarmDBConnectionString:'Data Source=.\SQLEXPRESS; Integrated Security=True' 
     -PortRangeStart:9000 
     -TcpPort:9354 
     -CertAutoGenerationKey:$CertAutoGenerationKey 

which is:

New-SBFarm -AdminGroup:'BUILTIN\Administrators' -PortRangeStart:9000 -TcpPort:9354 -CertAutoGenerationKey:$CertAutoGenerationKey -SBFarmDBConnectionString:'Data Source=.\SQLEXPRESS; Integrated Security=True'

  • -AdminGroup: The the admin group.
  • -GatewayDBConnectionString: connection string of the gateway database. If not passed in will be created in the same SQL Server using SBFarmDBConnectionString with the default name of “SBGatewayDatabase”.
  • -HttpsPort: the port Service Bus uses for HTTPS communication.
  • -TcpPort The port that the Service Bus for Windows Server uses for TCP.
  • /home/skysigal/public_html/data/pages/it/ad/service_bus_for_windows/howto/install.txt
  • Last modified: 2023/11/04 01:56
  • by 127.0.0.1