Installing RabbitMQ Online without TLS

If you're installing RabbitMQ without TLS, run the following PowerShell commands:

Copy
# Get the values from your Secret Server Site Connector page for the following:
$username = "<SITE CONNECTOR USERNAME FROM SECRET SERVER>"
$password = "<SITE CONNECTOR PASSWORD FROM SECRET SERVER>"

# Create a PSCredential object to use for the installation  
$credential = New-Object System.Management.Automation.PSCredential ($username, (ConvertTo-SecureString -String $password -AsPlainText -Force)) 

#Online install without TLS command  
Install-Connector `
-Credential $credential `
-Verbose;

There are more switches for this Install-Connector cmdlet. For more information, run get-help install-connector when inside the RabbitMQ Helper.

Using an admin account for the installation is required.