Slackbot
10/20/2024, 1:53 PMuser
10/20/2024, 1:54 PM.env
file as shown in the [Docker Compose deployment guide](https://docs.airbyte.com/deploying-airbyte/docker-compose): 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): 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: 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: 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).