要在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服務器的實際配置進行相應的修改。