Forums de discussion

Admin password has expired.Please contact an administrator to reset passwor

thumbnail
Manish Yadav, modifié il y a 11 années.

Admin password has expired.Please contact an administrator to reset passwor

Expert Publications: 493 Date d'inscription: 26/05/12 Publications récentes
Hi All,

I activated password policy in which password got automatically expire after 180 days.I can reset password of normal user using admin account[test user using control panel ] But i'm facing one problem in which admin password got expired[Test user].when i'm trying to login using admin credentials i'm getting error Your password has expired. Please contact an administrator to reset your password .

I tried below steps but didn't get success
1. I changed password in User_ table manually [password_ and passwordEncrypted] columns]
2. I changed passwordReset value 1 to 0
3. I tired with forget password option
4. In Portal-ext.properties i mentioned passwords.default.policy.name=Default Password Policy

can anybody please let me know how i can reset admin expired password.
thumbnail
Bart Simpson, modifié il y a 11 années.

RE: Admin password has expired.Please contact an administrator to reset pas

Liferay Master Publications: 522 Date d'inscription: 29/08/11 Publications récentes
1. I changed password in User_ table manually [password_ and passwordEncrypted] columns] 

Did you change the value of "passwordEncrypted" ? It usually works when you tell liferay that the passwords are not encrypted and copy the value of password directly from db.
I'll try and check myself, could you also try to change the value of passwordModifiedDate so it matches the changed policy.
thumbnail
vipin bardia, modifié il y a 11 années.

RE: Admin password has expired.Please contact an administrator to reset pas

Regular Member Publications: 162 Date d'inscription: 28/02/11 Publications récentes
I hope this link will help you out.

vkbardia.blogspot.in/2012/11/reset-adminusers-password-by-hook.html

Regards,
Vipin Bardia
thumbnail
Hitoshi Ozawa, modifié il y a 11 années.

RE: Admin password has expired.Please contact an administrator to reset pas

Liferay Legend Publications: 7942 Date d'inscription: 24/03/10 Publications récentes
Values you enter from Control Panel is going to overwrite any settings you've specified in portal-ext.properties so if you set the password policy from the Control Panel, changing portal-ext.properties won't do it.

Are you shutting down you liferay when changing database values directly. Liferay caches data in memory so you'll need to either flush or shutdown liferay to force liferay to re-read values from the database.
TARUN ROHILA, modifié il y a 8 années.

RE: Admin password has expired.Please contact an administrator to reset pas

New Member Publications: 19 Date d'inscription: 14/09/14 Publications récentes
Change password modified date to latest date in User_ table for the user you want to login.

passwordModifiedDate
2015-10-19 05:37:34.557
thumbnail
David H Nebinger, modifié il y a 8 années.

RE: Admin password has expired.Please contact an administrator to reset pas

Liferay Legend Publications: 14919 Date d'inscription: 02/09/06 Publications récentes
Won't work, Tarun. Liferay caches much of the user table locally in a lucene index, including the date.

DB modifications are not always the right answer, especially in Liferay.
Pablo Luna, modifié il y a 7 années.

RE: Admin password has expired.Please contact an administrator to reset pas

New Member Envoyer: 1 Date d'inscription: 09/11/16 Publications récentes
You must to set in your portal-ext.properties to avoid caching users in memory by liferay.

value.object.finder.cache.enabled.com.liferay.portal.model.User=false


Then portlet.login always ask to database.
thumbnail
David H Nebinger, modifié il y a 7 années.

RE: Admin password has expired.Please contact an administrator to reset pas

Liferay Legend Publications: 14919 Date d'inscription: 02/09/06 Publications récentes
This is not a setting you want to have on all the time as it's a performance degradation.

Plus to change the value requires an app server restart.