Operating System - HP-UX
1753481 Members
4539 Online
108794 Solutions
New Discussion юеВ

how to re use the same password again? in HP-UX

 
SOLVED
Go to solution
bullz
Super Advisor

how to re use the same password again? in HP-UX

Hello Guruz,

I am unable to use the same password as password policy is not allwing me :(

Below message i am geting wen i trying to reset the password.

You may not re-use a previously used password.
6 REPLIES 6
Rita C Workman
Honored Contributor

Re: how to re use the same password again? in HP-UX

If your security has been setup to thwart the repeating of passwords, then as a user you can't.

You can ask your UNIX Admin to set it to that again, but my guess is they are trying to stop this bad security habit.

Just a thought,
Rita
Jaime Bolanos Rojas.
Honored Contributor

Re: how to re use the same password again? in HP-UX

:-) Hi bullz,

Policies are there for a reason, if you are the sys admin and you set the policy you can overwrite the policy, if you are a user then you can not. Re-using passwords is unsafe and it goes against company security policies.

If you are the sys admin, and still want to go that route, you could check the /etc/default/security file for settings on this.

Regards,

Jaime.
Work hard when the need comes out.
Raj D.
Honored Contributor
Solution

Re: how to re use the same password again? in HP-UX

bullz ,

Try this to keep the same password,
(with this password policy will not restrict . )

#/sbin/passwd username


Cool!,


Cheers,
Raj.
" If u think u can , If u think u cannot , - You are always Right . "
bullz
Super Advisor

Re: how to re use the same password again? in HP-UX

Thank you so much raj... Issue is resolved.
Very easy option :)

But what is differnce b/w passwd and /sbin/passwd ?

Raj D.
Honored Contributor

Re: how to re use the same password again? in HP-UX

bullz,

Yes /sbin/passwd & /usr/bin/passwd are different and having different size:
/sbin commands are much low level command and can be available for single user mode as well, they do not have any shared library components.

Whereas /usr/bin/passwd is dynamically linked and need the shared libraries (/usr/lib)and thats why it looks for the password policy per the security settings .


Cheers.
Raj.
" If u think u can , If u think u cannot , - You are always Right . "
bullz
Super Advisor

Re: how to re use the same password again? in HP-UX

Cool