其他分享
首页 > 其他分享> > passwd: Authentication token manipulation error

passwd: Authentication token manipulation error

作者:互联网

问题背景

线上环境修改root密码时报如下错误:

[root]# passwd root
Changing password for user root.
passwd: Authentication token manipulation error

解决办法

查看/etc/passwd、/etc/shadow文件属性

[root]# lsattr /etc/shadow
----i----------- /etc/shadow
[root]# lsattr /etc/passwd
----i----------- /etc/passwd

注释:

 

撤销/etc/passwd、/etc/shadow的i文件属性

[root]# chattr -i /etc/shadow
[root]# chattr -i /etc/passwd

 

再次查看/etc/passwd、/etc/shadow文件属性

[root]# lsattr /etc/shadow
---------------- /etc/shadow
[root]# lsattr /etc/passwd
---------------- /etc/passwd

然后,重新更新用户密码即可。

标签:文件,passwd,etc,Authentication,error,shadow,root,目录
来源: https://www.cnblogs.com/haha029/p/16113866.html