Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Problem

How to extend the user password when expired.User unable to login to Domibus Admin console, and getting error - "Password Expired"

Solution

To extend the password of the admin user for 3 months, for example, use the following command (MYSQL and ORACLE):

...

UPDATE TB_USER SET `PASSWORD_CHANGE_DATE` = DATE_ADD(`PASSWORD_CHANGE_DATE`, INTERVAL 3 MONTH);

COMMIT;


To check the expiry date of all the users

...