How to change Workflow Manager
Service Account / Rus As Account Change
SharePoint workflow services were connected to a user/ admin
account. Need to switch the user account to Service Account.
1.
For Service Bus
Stop-SBFarm
Set-SBFarm
-RunAsAccount Domain\Username
$RunAsPassword
= ConvertTo-SecureString -AsPlainText
-Force '<Password>'
Update-SBHost
-RunAsPassword $RunAsPassword
Start-SBFarm
2.
For Workflow Manager:
Stop-WFHost
Set-WFCredentials
-WFManagemntDBConnectionString <String> -ScopeUri <uri> -
NewRunAsUserName <string>
$CertKey=ConvertTo-SecureString
'Access1' -asplaintext -force;
Update-WFHost
-RunAspassword $wfpassword -certificateautogenerationkey $CertKey - Verbose
Start-WFHost
3.
After executing the above commands
necessary to Leave the farm and rejoin the farm.
Reference Articles:
0 Comments