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.
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.