Admin Account Recovery
Recover administrator access to duplistatus when you've lost your password or been locked out of your account. This guide covers using the admin recovery script in Docker environments.
Using the Script in Docker
The Dockerfile includes the scripts directory and a convenient shell wrapper.
# Execute inside the running container using the wrapper
docker exec -it duplistatus /app/admin-recovery <username> <new-password>
Example:
docker exec -it duplistatus /app/admin-recovery admin NewPassword123
Troubleshooting
If you encounter issues with the recovery script:
- Verify Container is Running: Check that the container is running with
docker ps - Check Script Availability: Verify the script exists in the container with
docker exec -it duplistatus ls -la /app/admin-recovery - Review Container Logs: Check for errors with
docker logs duplistatus - Verify Username: Ensure the username exists in the database
- Check Password Format: Ensure the new password meets all requirements
If problems persist, see the Troubleshooting guide for more help.