Applies to: All versions of Centrify DirectControl on HPUX 11.11 OS
Problem:
Local users are unable to log into HPUX 11.11 machines once Centrify is installed and joined to the Domain.
Cause:
The HPUX 11.11 system may be running an older version of sshd provided by HPUX not Centrify Openssh.
A look at the /etc/pam.conf file should show that there is no authentication/session/password entries for service "sshd" (like "login") although it does have an account.
Resolution:
The following should be added the following lines to /etc/pam.conf
sshd auth sufficient /usr/lib/security/libpam_unix.1 use_first_pass debug
sshd auth required /usr/lib/security/libpam_ldap.1 use_first_pass
sshd session sufficient /usr/lib/security/libpam_unix.1
sshd session required /usr/lib/security/libpam_ldap.1
sshd password sufficient /usr/lib/security/libpam_unix.1 try_first_pass
sshd password required /usr/lib/security/libpam_ldap.1 use_first_pass
This addition should fix the local user login issue.