Skip to content
21 changes: 17 additions & 4 deletions docs/deploying-airbyte/on-oci-vm.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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 <private-key-file.key> -L 2200:oci-private-instance-ip:22
ssh opc@localhost -i <private-key-file.key> -p 2200
```

### Airbyte GUI Local Port Forward to Airbyte VM

```
ssh opc@bastion-host-public-ip -i <private-key-file.key> -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)

Expand Down