vmware-marketplacemantis

Modify a user's password

Mantis requires its email settings to be correctly set before users can log in because the temporary password is sent via email to the user’s email address. If Mantis' SMTP settings are not configured, configure the password manually by following the steps below:

  • Connect to your MySQL database (via command line or phpMyAdmin).

  • Run the queries below, replacing the USERNAME and PASSWORD placeholders with the appropriate values:

      USE bitnami_mantis;
      UPDATE mantis_user_table SET password=MD5('PASSWORD') where username='USERNAME';
    

The user should now be able to log in with the password specified.

Last modification December 21, 2022