We are sunsetting On-Premises API. Refer to our On-Premises API Sunset document for details, and to learn how to migrate to our next-generation Cloud API.

Reset Your Password

If you forgot your password, you need to drop the users table to reset it:

  1. Stop the Webapp container:
    docker stop your-webapp-container-id
  2. Connect to MySQL via Docker in the command line:
    docker exec -it your-mysql-container-id mysql -uroot -p
  3. Enter your MySQL password when prompted (as per mysql.conf).
  4. Check whether the users table exists:
    show tables in waweb;
  5. Drop the users table:
    drop table waweb.users;
  6. Exit MySQL:
    exit;
  7. Restart the Webapp container:
    docker restart your-webapp-container-id
  8. Log in to MySQL again using above steps to make sure waweb now exists.
  9. Check the users table in this database for an admin entry.

Refer to the Login and Authentication documentation for instructions to continue with your login.