Hi experts
I am trying to disable the stupidly complicated password requirement on my esx 5.5 host. It's ridiculus that I need a 16 character password, some lower case, upper case, numbers then special characters to satisfy the requirement.
I have tried several and none of it seems to work:
I tried to edit the pam.d/passwd so that the requist field contains -1 for each of the Nxs'. set them to disabled, and tried to add the enforce=none.
ex:
esx# vi /etc/pam.d/passwd
password requisite /lib/security/$ISA/pam_passwdqc.so retry=3 min=8,8,8,7,6 enforce=none
or
password requisite /lib/security/$ISA/pam_passwdqc.so retry=3 min=-1,-1,-1,-1,-1
or
password requisite /lib/security/$ISA/pam_passwdqc.so retry=3 min=disabled,disabled,disabled,disabled,disabled
But so far no luck. Creating a simple test user with a test password still fails because of the password.
I even tried rebooting the host and still nothing.
Anyone know what I am missing?