Hi :smile: i want ask: "What is the right configur...
# replication-ask-ai
c
Hi 😄 i want ask: "What is the right configuration to use a virtual machine to run AirByte?"
k
A message from kapa.ai
Sure, I can guide you through the process of setting up Airbyte on a virtual machine. The process varies slightly depending on the cloud provider you are using. Here are the general steps for a few popular providers: Microsoft Azure VM: 1. Deploy a Microsoft Azure VM. The instructions have been tested on a standard DS1 v2 (1 vcpu, 3.5 GiB memory) Microsoft Azure VM with Ubuntu 18.04. [source](https://docs.airbyte.com/deploying-airbyte/on-azure-vm-cloud-shell) 2. Connect to the VM using SSH. 3. Create a new directory and download Airbyte's install script from GitHub. 4. Start Airbyte by running the install script. [source](https://docs.airbyte.com/deploying-airbyte/on-azure-vm-cloud-shell) Oracle Cloud Infrastructure (OCI) VM: 1. Deploy an OCI VM compute instance and allowlist a port for a CIDR range in the security list of your OCI VM Instance subnet. Connect to the instance using a bastion port forwarding session. [source](https://docs.airbyte.com/deploying-airbyte/on-oci-vm) 2. Download the Airbyte repository and deploy it on the VM. 3. Get Airbyte running on your OCI VM instance using the installation script. [source](https://docs.airbyte.com/deploying-airbyte/on-oci-vm) Google Cloud Platform (GCP): 1. Connect to your Google Cloud instance. 2. Install Airbyte in your VM terminal. [source](https://docs.airbyte.com/deploying-airbyte/on-gcp-compute-engine) Please note that for security reasons, it is strongly recommended not to expose Airbyte on Internet available ports. [source](https://docs.airbyte.com/deploying-airbyte/on-azure-vm-cloud-shell) Here are the general commands you would use to install Airbyte:
Copy code
bash mkdir airbyte && cd airbyte   wget <https://raw.githubusercontent.com/airbytehq/airbyte/master/run-ab-platform.sh>   chmod +x run-ab-platform.sh   ./run-ab-platform.sh -b
Please refer to the specific guides for each cloud provider for more detailed instructions.