掲示板

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

thumbnail
11年前 に Manish Yadav によって更新されました。

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

Expert 投稿: 493 参加年月日: 12/05/26 最新の投稿
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
11年前 に Bart Simpson によって更新されました。

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

Liferay Master 投稿: 522 参加年月日: 11/08/29 最新の投稿
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
11年前 に vipin bardia によって更新されました。

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

Regular Member 投稿: 162 参加年月日: 11/02/28 最新の投稿
I hope this link will help you out.

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

Regards,
Vipin Bardia
thumbnail
11年前 に Hitoshi Ozawa によって更新されました。

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

Liferay Legend 投稿: 7942 参加年月日: 10/03/24 最新の投稿
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.
8年前 に TARUN ROHILA によって更新されました。

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

New Member 投稿: 19 参加年月日: 14/09/14 最新の投稿
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
8年前 に David H Nebinger によって更新されました。

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

Liferay Legend 投稿: 14919 参加年月日: 06/09/02 最新の投稿
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.
7年前 に Pablo Luna によって更新されました。

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

New Member 投稿: 1 参加年月日: 16/11/09 最新の投稿
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
7年前 に David H Nebinger によって更新されました。

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

Liferay Legend 投稿: 14919 参加年月日: 06/09/02 最新の投稿
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.