Good morning Lucas Peñaloza,
FYI, this error shows a breakdown in the secure channel between the cluster's computer account (CLPWGIRSQL$) and Active Directory, specifically during the periodic password update process. The cluster name object (CNO) in Active Directory has a password that the cluster service automatically rotates; when the stored password on the cluster nodes becomes desynchronized from the one in AD, or when the CNO lacks the necessary permissions to update its own attributes, this exact error occurs.
First, verify the cluster identity's permissions in Active Directory. The account CLPWGIRSQL$ must have Reset Password and Write permissions on its own computer object. Using Active Directory Users and Computers with advanced features enabled, locate the computer object for CLPWGIRSQL$, open its Properties > Security > Advanced. Ensure the account itself is listed with at least Reset Password and Write permissions. If not, you or your domain administrator must restore these permissions, which can be done by right-clicking the cluster object in Failover Cluster Manager and selecting Repair Active Directory Object. This action re-engages the default permission grant.
If permissions are correct, the password itself is likely mismatched. The most direct fix is to use the cluster repair function. In Failover Cluster Manager, navigate to the cluster name resource under Cluster Core Resources. Right-click the cluster name resource (usually named Cluster Name) and choose More Actions > Repair Active Directory Object. This will attempt to reset the password and re-sync the permissions. If the option is grayed out, you may need to bring the cluster name resource offline first.
Should the repair action fail, manually reset the computer account password from a domain controller. Open an elevated Command Prompt and run:
text
netdom resetpwd /s:<DomainController> /ud:<Domain>\<AdminAccount> /pd:*
You will be prompted for the admin password. Alternatively, you can use PowerShell on a domain controller: Reset-ComputerMachinePassword -Server <DomainController> -Credential <DomainAdminCredential>. After resetting, restart the cluster service on all nodes and bring the cluster name resource back online.
Additionally, check for duplicate computer objects in AD that might be causing conflict, and ensure the cluster computer account is not disabled. Monitor the cluster logs and AD events for subsequent errors, particularly Event ID 1069 for resource failures and Event ID 1207 for cluster network name updates.
I hope you've found something useful here. If it helps you get more insight into the issue, it's appreciated to ACCEPT ANSWER then. Should you have more questions, feel free to leave a message. Have a nice day!
VPHAN