Workflow Manager Farm Service Account / Run As Account Password
Reset
The impact is the services will stop working when the password
gets restart.
To avoid that they need to run these PowerShell Commands
1.
For Workflow Manager
a.
Import-Module Workflow Manager
b.
Stop-WFHost
c.
$MyPassword= ConvertTo-SecureString
-string "Enter your Password" -force -AsplainText;
d.
Update-WFHost -RunAsPassword
$MyPassword
e.
Start-WFHost
f.
Get-WFFarm
g.
Get-WFFarmStatus
2.
For Service Bus
a.
Import-Module ServiceBus
b.
Stop-SBHost
c.
$MyPassword= ConvertTo-SecureString
-string "Enter your Password" -force -AsplainText;
d.
Update-SBHost -RunAsPassword
$MyPassword
e.
Start-WFHost
f.
Get-SBFarm
g.
Get-SBFarmStatus
3.
It is necessary to leave the farm and
rejoin the farm
0 Comments