質問

I needed to change the account that are running my Workflow Manager services.

Logged into the server running the service and used the following PowerShell using the account that installed Workflow Manager and ran it successfully.

$password = ConvertTo-SecureString "NotMyActualPassword" -AsPlainText -Force
Stop-SBFarm
Update-SBHost -RunAsPassword $password
Update-WFHost -RunAsPassword $password
Start-SBFarm

Services restarted, ran an IISReset just to be sure.

However, now my workflow's are just at a "Not Started" status. Triggering a workflow to manually start just ques up another instance of the workflow. No specific errors show up in the event viewer.

Any pointers to what could be wrong? Anything that's need to be updated from SharePoint?

役に立ちましたか?

解決

You have to stop workflow service as well to update the password like this.

For Service Bus

Import-Module ServiceBus

Stop-SBHost

$mypassword = ConvertTo-SecureString ‘tpas2jupa’ -AsPlainText -Force

Update-SBHost -RunAsPassword $mypassword

Start-SBHost

For WorkFlow

Stop-WFHost

$mypassword = ConvertTo-SecureString -string “password” -force –AsPlainText;

Update-WFHost -RunAsPassword $mypassword

Start-WFHost

Here is my post: http://krossfarm.com/?p=1050

ライセンス: CC-BY-SA帰属
所属していません sharepoint.stackexchange
scroll top