On-Premises API was officially sunset on October 23, 2025 and is no longer available. Please use Cloud API instead.
If you forgot your password, you need to drop the users table to reset it:
docker stop your-webapp-container-id
docker exec -it your-mysql-container-id mysql -uroot -p
mysql.conf).users table exists:
show tables in waweb;
users table:
drop table waweb.users;
exit;
docker restart your-webapp-container-id
waweb now exists.users table in this database for an admin entry.Refer to the Login and Authentication documentation for instructions to continue with your login.