Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update on-oci-vm.md #4684

Merged
merged 8 commits into from
Jul 12, 2021
Merged
Changes from 7 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
shadabshaukat marked this conversation as resolved.
Show resolved Hide resolved

ssh -i private-key-file opc@oci-private-instance-ip
ssh -i private-key-file opc@oci-private-instance-ip -p 2200
shadabshaukat marked this conversation as resolved.
Show resolved Hide resolved
```

## 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
shadabshaukat marked this conversation as resolved.
Show resolved Hide resolved
ssh opc@localhost -i <private-key-file.key> -p 2200
shadabshaukat marked this conversation as resolved.
Show resolved Hide resolved
```

### 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
shadabshaukat marked this conversation as resolved.
Show resolved Hide resolved
```
```
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
```


## Access Airbyte

Open URL in Browser : https://localhost:8000/
Open URL in Browser : http://localhost:8000/

![](../.gitbook/assets/OCIScreen4.png)

Expand Down