- Deploy Open Source
- Deploy to AWS
Deploy Open Source
Deploy to AWS
Create a New Instance
- Launch a new instance
- Select instance AMI
- Everything has been tested on
Amazon Linux 2 AMI (HVM)
andUbuntu 20.04
- Everything has been tested on
- Set Instance Type
- Select at least a
t2.large
- Select at least a
- Network Settings
- Allow SSH traffic
- Allow traffic to port
8081
- For security purposes do not allow HTTP/HTTPS traffic from the internet
- Configure Storage
- Add at least 128 GB for the Root Volume
- Connect to your instance
Bash
SSH_KEY=~/Downloads/metlo-api-security-key.pem
INSTANCE_IP=<YOUR_INSTANCE_IP>
chmod 400 $SSH_KEY
ssh -i $SSH_KEY ubuntu@$INSTANCE_IP
Install Metlo
Bash
sudo wget https://raw.githubusercontent.com/metlo-labs/metlo/master/manage-deployment.py -O manage-deployment.py
sudo chmod +x manage-deployment.py
sudo -E python manage-deployment.py init -q
sudo python manage-deployment.py start
Connect to Metlo
Bash
ssh -i $SSH_KEY -L 8000:localhost:8000 -N -f ubuntu@$INSTANCE_IP