Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

Password Expiration

sunilv_dev
Participant
0 Kudos

Hi:

I want to set password to be expired every 90 days for dialog users in ECC 6.0.

How can I do this??

1 ACCEPTED SOLUTION

Former Member
0 Kudos

You will need to set the parameter login/password_expiration_time to 90 days in your instance profile

Kunal

3 REPLIES 3

Former Member
0 Kudos

You will need to set the parameter login/password_expiration_time to 90 days in your instance profile

Kunal

Former Member
0 Kudos

Kunal's answer is correct, but what is it that you want to happen to the user when the 90 days are over?

login/password_expiration_time will only determine that at the next login after the 90 days since last change (whenever that may be...), the user will be prompted to change their password.

Also of interest to you might be login/password_max_idle_productive which will determine that after ??? days (typically more than the value of login/password_expiration_time makes sense) of not using (and therefore not changing) the user's password, the user will not be able to logon to the system using a password as authentication. That is different to only having to change the password after... lets say 365 days.

You can also independently of the above params control the "lifetime" of initial (first) and reset (by administrator) passwords which the user has not changed to their own yet, in other words they have not used the password for ??? days as means to authenticate.

Cheers,

Julius

Edited by: Julius Bussche on Apr 18, 2008 12:05 PM

0 Kudos

Juilius,

Thanks for the insights.

Kunal