Handling Farm Password Changes

 

Applies To: Service Bus for Windows Server 1.1

Many installations require all users to change passwords periodically. If all the nodes in a farm share the same service account and the service account password needs to be changed, you must carry out the following steps on all machines that have been added as nodes to the farm:

  1. Log out of the service account.

  2. Log back into the service account using the new password.

  3. Run the following cmdlets from the PowerShell prompt of Microsoft AppFabric Server:

    FarmPassword = ConvertTo-SecureString -String MyFarmsPassword -AsPlainText -Force
    $AccountPassword = ConvertTo-SecureString -String NewPassword -AsPlainText -Force
    Stop-SBHost -Verbose
    Update-SBHost -RunAsPassword $AccountPassword -CertificateGenerationKey $FarmPassword –Verbose
    Start-SBHost -Verbose
    

You can now add nodes to the farm or remove nodes from it again.