Summary
How to access Airbyte on EC2 from local desktop browser without using FQDN
Question
Hello, I am testing out airbyte on EC2. Everything seemed to have installed successfully with abctl
except that it only accepts localhost
as documented. How do I access airbyte from local desktop browser and test it out without having to add FQDN to it? We don’t necessarily want to add FQDN for testing.
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
["accessing-airbyte", "ec2", "local-desktop-browser", "fqdn"]
Few ideas:
1)
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
-
install ngrok https://ngrok.com/ inside EC2 machine and run
ngrok http 8000
-
SSH tunneling https://www.ssh.com/academy/ssh/tunneling-example
thank you. Will try option 1