This message was deleted.
# ask-ai
s
This message was deleted.
u
The error message you're seeing suggests that the password authentication for the user "docker" is failing. This could be due to a number of reasons, such as incorrect password, incorrect username, or issues with the database connection. If you're using Docker Compose to deploy Airbyte, you can change the default username and password in your
.env
file as shown in the [Docker Compose deployment guide](https://docs.airbyte.com/deploying-airbyte/docker-compose):
Copy code
shell # Proxy Configuration   # Set to empty values, e.g. "" to disable basic auth   BASIC_AUTH_USERNAME=your_new_username_here   BASIC_AUTH_PASSWORD=your_new_password_here
If you're using
abctl
to deploy Airbyte on Kubernetes, you can retrieve the password using the
abctl local credentials
command as mentioned in the [Authentication guide](https://docs.airbyte.com/deploying-airbyte/integrations/authentication):
Copy code
shell abctl local credentials
This command should return the password, client-id, and client-secret. If you're using your own Kubernetes cluster, you can view your credentials by running:
Copy code
shell kubectl get secret airbyte-auth-secrets -n <YOUR_NAMESPACE> -o yaml
The values returned are base64 encoded. To decode your password, you can run:
Copy code
shell echo 'cmhvQkhCODlMRmh1REdXMWt3REpHZTJMaUd3N3c2MjU=' | base64 -d
If you're still having issues, it might be helpful to check the logs for more detailed error messages. If the issue persists, consider raising an issue on the [Airbyte GitHub page](https://github.com/airbytehq/airbyte/issues).