Power School
10/27/2024, 9:04 AMuser
10/27/2024, 9:04 AMairbyte
- Password: password
3. To change these default credentials or add new users, you need to modify the .env
file in your Airbyte directory. Look for the following lines: BASIC_AUTH_USERNAME=airbyte BASIC_AUTH_PASSWORD=password
You can change these values to your desired username and password [source](https://airbyte.com/tutorials/how-to-use-airflow-and-airbyte-together). 4. If you want to set the credentials using the abctl
command-line tool, you can use the following commands: To set the email (username): bash abctl local credentials --email <mailto:your_email@example.com|your_email@example.com>
To set the password: bash abctl local credentials --password your_new_password
[source](https://docs.airbyte.com/using-airbyte/getting-started/oss-quickstart#2-run-airbyte) 5. After making these changes, you'll need to restart your Airbyte instance for the changes to take effect. Please note that this basic authentication system is relatively simple and may not be suitable for production environments with multiple users. For more advanced user management, you might need to consider additional security measures or third-party authentication systems. Remember to keep your credentials secure and avoid using easily guessable passwords.