今天同事遇到了一个有趣的问题,就是linux系统的用户在修改密码的时候默认不能设置与历史密码一样的密码。

    想修改用户密码。但是还不能改成和原来有相同的密码,因为我们的密码会设置过期时间,一段时间就需要修改一次,那这个长期以往谁能记住密码呀!!!!

    于是查了一下资料,下面将讲述如何解决这个问题(禁设重复密码)

    问题描述:

   centos7系统 先来看看出现的问题提示。The password is the same as the old one

[test11@node1 ~]$ passwd 
Changing password for user test11.
Changing password for test11.
(current) UNIX password: 
New password: 
BAD PASSWORD: The password is the same as the old one

  问题原因:

    涉及文件:

    /etc/pam.d/system-auth 

  remember=5表示会记录5次密码, 所以你修改的密码不能与原来5次的一样。如果想解决这个问题删除这个就行。

删除以后测试,又能使用以前的密码修改了。不过root用户好像不受约束。

[test11@node1 ~]$ passwd 
Changing password for user test11.
Changing password for test11.
(current) UNIX password: 
New password: 
Retype new password: 
passwd: all authentication tokens updated successfully.

 

Logo

更多推荐