Summary
The user is facing an issue accessing Airbyte locally on port 8000 from another PC in the same network and receiving a 404 Not Found error with nginx. They are seeking assistance to identify the missing configuration.
Question
I’m have install Airbyte locally following this guide https://docs.airbyte.com/using-airbyte/getting-started/oss-quickstart
I’m am trying to reach the 8000 port from another pc in the same network but getting 404 Not Found. nginx
What am I missing?
This topic has been created from a Slack thread to give it more visibility.
It will be on Read-Only mode here. Click here if you want
to access the original thread.
Join the conversation on Slack
["install-airbyte", "local", "port-8000", "network", "404-not-found", "nginx"]
you need to set --host
option (IP address doesn’t work as I recently checked) or configure reverse proxy for localhost:8000
that binds to 0.0.0.0
and uses your preferred port
The below solution worked. Thank you <@U05JENRCF7C> :thank-you:
abctl
has --host
option
--host string ingress http host (default "localhost")
abctl local install --host airbyte.local
then to /etc/hosts
you need to add x.x.x.x airbyte.local
where x.x.x.x
is IP of your EC2 instance (public or private accessible via VPN if you have that kind of setup) and incoming traffic to port 8000 is allowed
<@U05JENRCF7C> maybe you can help with this one as well?
I’ve provided the email and took the password from abctl local credentials
but it says invalid password. And now uninstalling and installing it back doesn’t ask for email.
Is there a way to reset the email? Is it stored in some volume that persists?
<@U04J2SSM9LH> thanks for sharing this issue. We updated out our docs to address the 2 issues you faced. It looks like you might have already figured out workarounds, but if you haven’t please let us know if these updated docs help you resolve it.
- <Quickstart | Airbyte Documentation access issue>
- <Quickstart | Airbyte Documentation username issue>
Thank you for the help and fast reply.
abctl
creates structure like in ~/.airbyte
folder
└─── abctl
├── abctl.kubeconfig
└── data
├── airbyte-minio-pv
└── airbyte-volume-db```
and to completely remove data, it is necessary to pass `--persisted` option to `abctl local uninstall`
```Uninstall Airbyte locally
Usage:
abctl local uninstall [flags]
Flags:
-h, --help help for uninstall
--persisted remove persisted data```