diff --git a/docs/deploying-airbyte/on-oci-vm.md b/docs/deploying-airbyte/on-oci-vm.md index b1ee289892cd..2e4d1672ad9b 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)