Installing RabbitMQ Online without TLS PowerShell
If you are installing RabbitMQ without TLS, run the following PowerShell commands:
# 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))
# Insert RabbitMQ Admin User Credentials
$adminUsername = "<User-defined RabbitMQ admin Username>"
$adminPassword = "<User-defined RabbitMQ admin Password>"
# Create a PSCredential object to use for the installation
$adminCredential = New-Object System.Management.Automation.PSCredential ($adminUsername, (ConvertTo-SecureString -String $adminPassword -AsPlainText -Force))
#Online install without TLS command
Install-Connector `
-Credential $credential `
-AdminCredential $adminCredential `
-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.