Users may experience the following symptoms on vCenter Server Appliance (VCSA) 9.x:
sudo -i fails with an "Authentication failure" error, even with the correct password./bin/appliancesh, a single incorrect password entry may incorrectly increment the failure counter or trigger an immediate lockout./usr/sbin/faillock --user root shows multiple failures attributed to the passwd service or external IP addresses.VMware vCenter Server 9
The default account lockout policy in vCenter 9.x is managed by the faillock module. If the lockout threshold (the deny parameter) is set too low (e.g., the default of 3), automated services or the behavior of the /bin/appliancesh wrapper can cause the root account to lock prematurely during authentication transitions.
To resolve this issue, increase the allowed number of failed login attempts before a lockout occurs by modifying the faillock configuration
faillock.conf file:cp /etc/security/faillock.conf /etc/security/faillock.conf.bak/etc/security/faillock.conf file using a text editor (e.g., vi):vi /etc/security/faillock.confdeny parameter. Change the value to allow more attempts (e.g., change deny = 3 to deny = 9):deny = 9For more details on configuring user account lockout policies, see .