docs/install/troubleshooting/reset-password.mdx
If you forgot your password on a self-hosted instance, you can reset it using the following steps:
Locate PostgreSQL Docker Container:
docker ps to find the PostgreSQL container.Access the Container:
docker exec -it POSTGRES_CONTAINER_ID /bin/bash
Open the PostgreSQL Console:
psql command.psql -U postgres
Connect to the ActivePieces Database:
\c activepieces
Create a Secure Password:
Update Your Password:
HASH_PASSWORD with your new password and YOUR_EMAIL_ADDRESS with your email.UPDATE public.user_identity SET password='HASH_PASSWORD' WHERE email='YOUR_EMAIL_ADDRESS';