Hello! I get this message when trying to call Airb...
# replication-troubleshooting
r
Hello! I get this message when trying to call Airbyte API. Where can I find the authorisation key?
Copy code
<html>

<head>
	<meta charset="utf-8" />
	<title>Airbyte - Access Denied</title>
</head>

<body>
	<h1>🐙 Nope.</h1>
	<h2><code>HTTP Error Code: 401</code></h2>

	<p>
		This deployment of Airbyte is protected by HTTP Basic Authentication.
		Please refer to the <a href="<https://docs.airbyte.com>">Airbyte docs</a> to learn more about:
		<ul>
			<li><a href="<https://docs.airbyte.com/quickstart/deploy-airbyte>">the default username/password</a></li>
			<li><a href="<https://docs.airbyte.com/operator-guides/security>">securing your Airbyte deployment</a>
				including turning off or changing the default username/password.</li>
		</ul>
	</p>
</body>

</html>
Need basic authentification
r
where do I find it?
z
See Evan Tahler (Airbyte)'s comment on my message. use user:pass in the url.
r
thanks!@
z
@Rytis Zolubas Or you can just disable authentification by setting user/pass empty string in .env file 🙂
r
ok, let's try!
@Zaza Javakhishvili would you know where it is located?
z
In airbytes's main directory.
.env file says:
Copy code
# Proxy Configuration
# Set to empty values, e.g. "" to disable basic auth
BASIC_AUTH_USERNAME=airbyte
BASIC_AUTH_PASSWORD=password
So you need to do:
Copy code
BASIC_AUTH_USERNAME=""
BASIC_AUTH_PASSWORD=""
Do not forget after restart (stop/start) airbyte.
👍 1
r
just what I was about to ask 😄 thanks a lot Zaza!!!