while updating password in managed account error

sns 9,236 Reputation points
2020-10-06T05:56:30.89+00:00

Taken from password vault a trying to update in managed account in CA
but coming up with below error. Please help. what could be the wrong
30280-capture.png

SharePoint Server Management
SharePoint Server Management
SharePoint Server: A family of Microsoft on-premises document management and storage systems.Management: The act or process of organizing, handling, directing or controlling something.
2,935 questions
0 comments No comments
{count} votes

Accepted answer
  1. Sharath Kumar Aluri 3,071 Reputation points
    2020-10-06T14:00:54.797+00:00

    seems like these is a one-time timer job got stuck in your farm, try deleting the timer job and then try updating the password manually. below script will help you to delete the timer job.

    Add-PSSnapin Microsoft.SharePoint.PowerShell -EA silentlycontinue
    $job = Get-SPTimerJob -Identity "job-admin-apppool-change"
    $job.Delete()
    

    If you still get the error while updating the password, use below script to update the password.

    Add-PSSnapin Microsoft.SharePoint.PowerShell -EA silentlycontinue
    
    $svc = Get-SPManagedAccount -Identity "domain\YourAccount"
    
    Set-SPManagedAccount -Identity $svc  -ExistingPassword (ConvertTo-SecureString "Your PASSWORD" -AsPlainText -force) –confirm
    

    Thanks & Regards,

    0 comments No comments

2 additional answers

Sort by: Most helpful
  1. Echo Du_MSFT 17,156 Reputation points
    2020-10-07T02:08:12.397+00:00

    @sns

    Try the above ways to check if the issue still exists.

    As a supplement, we could also launch SharePoint Management Shell to update managed account password , entry the following command:

    STSADM -o updatefarmcredentials -userlogin DOMAIN\username -password <new password as set via AD> -local  
    

    Similar issue for your reference:
    Central Administration not Available, STSADM password reset errors "job-admin-apppool-change" already exists.

    Thanks,
    Echo Du

    ===========

    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.

    1 person found this answer helpful.
    0 comments No comments

  2. Dattatray Patil 86 Reputation points
    2020-10-06T14:50:22.283+00:00

    Restart the IIS and Timer service, see if the job executes successfully.

    if not then check if you can start the job using "Start-SPAdminJob" command. Refer below article.

    https://learn.microsoft.com/en-us/powershell/module/sharepoint-server/start-spadminjob?view=sharepoint-ps

    if all these are not working then as suggested @Sharath Kumar Aluri , go ahead and delete the job and run the password command from the application server.

    0 comments No comments

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.