Foros de discusión

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

thumbnail
Manish Yadav, modificado hace 11 años.

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

Expert Mensajes: 493 Fecha de incorporación: 26/05/12 Mensajes recientes
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, modificado hace 11 años.

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

Liferay Master Mensajes: 522 Fecha de incorporación: 29/08/11 Mensajes recientes
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, modificado hace 11 años.

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

Regular Member Mensajes: 162 Fecha de incorporación: 28/02/11 Mensajes recientes
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, modificado hace 11 años.

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

Liferay Legend Mensajes: 7942 Fecha de incorporación: 24/03/10 Mensajes recientes
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, modificado hace 8 años.

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

New Member Mensajes: 19 Fecha de incorporación: 14/09/14 Mensajes recientes
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, modificado hace 8 años.

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

Liferay Legend Mensajes: 14916 Fecha de incorporación: 2/09/06 Mensajes recientes
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, modificado hace 7 años.

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

New Member Mensaje: 1 Fecha de incorporación: 9/11/16 Mensajes recientes
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, modificado hace 7 años.

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

Liferay Legend Mensajes: 14916 Fecha de incorporación: 2/09/06 Mensajes recientes
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.