← All deployment guides
AWS

Deploy OpenClaw to AWS

Run OpenClaw on Amazon Web Services with EC2, Lambda, or ECS. Full AWS ecosystem integration.

01

Prerequisites

An AWS account, AWS CLI configured, and basic familiarity with EC2 or your chosen service.

# Install and configure AWS CLI

aws configure

02

Launch an EC2 Instance

Choose an Ubuntu 22.04 AMI. t3.small or larger recommended for OpenClaw.

# Launch instance (example)

aws ec2 run-instances --image-id ami-xxxxx --instance-type t3.small --key-name your-key

03

Install OpenClaw

SSH into your instance and follow the standard OpenClaw setup guide.

# SSH and install

ssh -i your-key.pem ubuntu@your-ec2-ip

git clone https://github.com/example/openclaw.git

cd openclaw && npm install