Sharepoint 2013 Approval Workflow is not working in SharePoint2013. Giving error - "Sorry, something went wrong"

Arthur Chang Jr 1 Reputation point
2021-06-09T02:39:14.633+00:00

Reinstalled the workflow manager then rejoined to WF farm.
Approval Workflow is not working in SharePoint2013. Giving error - "Sorry, something went wrong, An unexpected error has occurred"

Background:
Service account domain password was forced to be updated.

I tried to update as many as password associated with the account:

  • Sharepoint services
  • Update account in the central admin
  • Application pools

I left the WF farm and uninstall it then reinstall to reconnect to DB but once got connected workflow seems not to be working.

SharePoint Workflow
SharePoint Workflow
SharePoint: A group of Microsoft Products and technologies used for sharing and managing content, knowledge, and applications.Workflow: An orchestrated and repeatable pattern of business activity, enabling data transformation, service provision, and information retrieval.
603 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. JoyZ 18,071 Reputation points
    2021-06-09T07:24:33.98+00:00

    @Arthur Chang Jr ,

    Stop workflow service then update the password like this.

    For Service Bus:

    Import-Module ServiceBus  
    Stop-SBHost  
    $mypassword = ConvertTo-SecureString 'yourpassword' -AsPlainText -Force  
    Update-SBHost -RunAsPassword $mypassword  
    Start-SBHost  
    

    For WorkFlow:

    Stop-WFHost  
    $mypassword = ConvertTo-SecureString -string 'yourpassword' -force –AsPlainText;  
    Update-WFHost -RunAsPassword $mypassword  
    Start-WFHost  
    

    If an Answer is helpful, please click "Accept Answer" and upvote it.

    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.


Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.