要在CentOS上配置LDAP登录,需要按照以下步骤进行操作:
sudo yum install openldap-clients
/etc/openldap/ldap.conf
文件,将以下内容添加到文件末尾BASE dc=example,dc=com
URI ldap://ldap.example.com
其中,dc=example,dc=com
是LDAP服务器的基准DN(Distinguished Name),ldap://ldap.example.com
是LDAP服务器的URI。
/etc/pam.d/system-auth
文件,将以下内容添加到文件末尾auth sufficient pam_ldap.so
account sufficient pam_ldap.so
password sufficient pam_ldap.so
/etc/nsswitch.conf
文件,将以下行修改为passwd: files ldap
shadow: files ldap
group: files ldap
sudo reboot
请注意,以上步骤中的example
和ldap.example.com
是示例值,你需要根据你的LDAP服务器的实际配置进行相应的修改。