user3661407
user3661407

Reputation: 543

Windows Server Service Bus 1.0

I am using Windows Server service bus 1.0. It was working fine up til now, but the Certificate of the farm has been expired.

I am no longer able to use service bus.

I would like to renew same certificate but I cannot find any useful help on the Google.

How can I find out at how to renew same farm's certificate?

Upvotes: 0

Views: 1504

Answers (1)

Tom Sun
Tom Sun

Reputation: 24569

Could anyone please help to find out, at how to renew same farm's certificate?

You could find that answer from this tutorial. To replace an active Service Bus for Windows Server farm certificate with a new certificate, do the following:

  1. Call the Stop-SBFarm cmdlet to stop all of the Service Bus for Windows Server services on all hosts. Execute this cmdlet on one of the farm nodes.

  2. Install a new certificate on all Service Bus for Windows Server machines.

  3. Call the Set-SBCertificate cmdlet with the following parameters. Run this cmdlet on one of the farm machines.

    • FarmCertificateThumbprint: Thumbprint of the new farm certificate.
  4. Call the Update-SBHost cmdlet on all farm nodes.

  5. Call the Start-SBFarm cmdlet on one of the farm nodes.

Upvotes: 1

Related Questions