how to create extra users for login to web interfa...
# ask-ai
p
how to create extra users for login to web interface for airbyte install on docker on local server
u
To create additional users for logging into the Airbyte web interface when installed locally using Docker, you can modify the environment variables in the
.env
file. Here's how you can do it: 1. Locate the
.env
file in your Airbyte directory. 2. Open the
.env
file and find the following lines:
Copy code
BASIC_AUTH_USERNAME=airbyte BASIC_AUTH_PASSWORD=password
3. Change these values to your desired username and password. For example:
Copy code
BASIC_AUTH_USERNAME=your_new_username_here BASIC_AUTH_PASSWORD=your_new_password_here
4. Save the
.env
file after making your changes. 5. Restart your Airbyte instance for the changes to take effect. It's important to note that this method only allows you to set a single username and password for accessing the Airbyte web interface. The current version of Airbyte doesn't support multiple user accounts for the web interface out of the box when deployed locally using Docker. For security reasons, it's highly recommended to change these credentials from the default values, especially if you're deploying Airbyte in a production environment. [Source: Airflow and Airbyte OSS - Better Together](https://airbyte.com/tutorials/how-to-use-airflow-and-airbyte-together)