From eacd8877832d09dac8cb08446627966d98e60f61 Mon Sep 17 00:00:00 2001 From: Shadab Mohammad <39692236+shadabshaukat@users.noreply.github.com> Date: Tue, 13 Jul 2021 06:08:53 +1000 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=9A=20=20add=20SSH=20instructions=20fo?= =?UTF-8?q?r=20OCI=20VM=20setup=20(#4684)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Sherif A. Nada --- docs/deploying-airbyte/on-oci-vm.md | 21 +++++++++++++++++---- 1 file changed, 17 insertions(+), 4 deletions(-) diff --git a/docs/deploying-airbyte/on-oci-vm.md b/docs/deploying-airbyte/on-oci-vm.md index b1ee289892cd7..2e4d1672ad9bc 100644 --- a/docs/deploying-airbyte/on-oci-vm.md +++ b/docs/deploying-airbyte/on-oci-vm.md @@ -19,9 +19,11 @@ Select the Subnet > Security List > Add Ingress Rules ## Login to the Instance/VM with the SSH key and 'opc' user +``` chmod 600 private-key-file -ssh -i private-key-file opc@oci-private-instance-ip +ssh -i private-key-file opc@oci-private-instance-ip -p 2200 +``` ## Install Airbyte Prerequisites on OCI VM @@ -59,16 +61,27 @@ sudo /usr/local/bin/docker-compose up -d ## Create SSH Tunnel to Login to the Instance +it is highly recommended to not have a Public IP for the Instance where you are running Airbyte). -it is highly recommended to not have a Public IP for the Instance where you are running Airbyte) +### SSH Local Port Forward to Airbyte VM From your local workstation -$ ssh -i private-key-file -L 8000:oci-private-instance-ip:8000 opc@bastion-host-public-ip +``` +ssh opc@bastion-host-public-ip -i -L 2200:oci-private-instance-ip:22 +ssh opc@localhost -i -p 2200 +``` + +### Airbyte GUI Local Port Forward to Airbyte VM + +``` +ssh opc@bastion-host-public-ip -i -L 8000:oci-private-instance-ip:8000 +``` + ## Access Airbyte -Open URL in Browser : https://localhost:8000/ +Open URL in Browser : http://localhost:8000/ ![](../.gitbook/assets/OCIScreen4.png)