linux – 无法使用useradd添加用户

前端之家收集整理的这篇文章主要介绍了linux – 无法使用useradd添加用户前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
尝试将(不存在的)用户添加到我的CentOS系统是返回useradd:用户示例存在.我可以成功地手动将用户添加到/ etc / passwd和/ etc / shadow,但是这种解决方法是A Bad Thing.用户存在于LDAP中,但PAM未使用LDAP进行身份验证.添加其他用户工作正常.我很难过.

ETA:

[root ~]# userdel example
userdel: error deleting password entry
userdel: error deleting shadow password entry
[root ~]# useradd example
useradd: user example exists
[root ~]# su example
bash-3.2$whoami
example
bash-3.2$groups example
example : Users
bash-3.2$cd
bash: cd: /home/example: No such file or directory
bash-3.2$

解决方法

如果在/etc/nsswitch.conf中包含LDAP(例如passwd:files ldap或passwd:compat passwd_compat:ldap等),则getent passwd就足够了,因此useradd可以查看LDAP条目.

这两个实用程序都与PAM无关,即使PAM对LDAP一无所知,也很乐意识别LDAP条目.

顺便说一句,如果你有nscd运行,请记得在更改nsswitch.conf后重新启动它.

原文链接:https://www.f2er.com/linux/396114.html

猜你在找的Linux相关文章