Skip to content

Commit

Permalink
📚 add SSH instructions for OCI VM setup (#4684)
Browse files Browse the repository at this point in the history
Co-authored-by: Sherif A. Nada <snadalive@gmail.com>
  • Loading branch information
shadabshaukat and sherifnada authored Jul 12, 2021
1 parent 501f863 commit 9d5231f
Showing 1 changed file with 17 additions and 4 deletions.
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

0 comments on commit 9d5231f

Please sign in to comment.