惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

G
Google Developers Blog
WordPress大学
WordPress大学
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
小众软件
小众软件
人人都是产品经理
人人都是产品经理
美团技术团队
Blog — PlanetScale
Blog — PlanetScale
S
SegmentFault 最新的问题
博客园 - 【当耐特】
V
V2EX
Microsoft Azure Blog
Microsoft Azure Blog
博客园 - 叶小钗
Google DeepMind News
Google DeepMind News
量子位
罗磊的独立博客
月光博客
月光博客
N
Netflix TechBlog - Medium
大猫的无限游戏
大猫的无限游戏
博客园_首页
P
Proofpoint News Feed
Jina AI
Jina AI
云风的 BLOG
云风的 BLOG
博客园 - 司徒正美
腾讯CDC

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Desplegar OpenClaw en AWS Lightsail sin sufrir 😎
Afu Tse (Cha · 2026-04-24 · via DEV Community

Si deseas desplegar OpenClaw en AWS Lightsail de manera simple, sencilla, repetible y sin pelear con pasos manuales, una buena opción es usar AWS CDK + Python + uv.

En este tutorial te muestro cómo levantar toda la infraestructura con Infrastructure as Code.

🦀 OpenClaw + AWS Lightsail + IaC

¿Por qué automatizar esto?

Porque hacerlo a mano una vez está bien, pero repetirlo muchas veces es "pesado".

Con IaC (Infrastructure as Code) ganas:

  • Menos errores humanos
  • Despliegues consistentes
  • Repetibilidad total (crear y destruir cuando quieras)
  • Más velocidad para tu equipo
  • Todo versionado en Git

¿Que crea este stack o proyecto?

Tu infraestructura en Lightsail con:

  • Instancia OpenClaw (openclaw_ls_1_0)
  • Puertos públicos 22, 80, 443
  • IP estática pública de Lightsail
  • Snapshots opcionales
  • Automatización de rol IAM para Bedrock
  • Asociación/desasociación automática de la IP estática pública durante el ciclo de vida del stack

Pre requisitos rápidos

Necesitas tener instalado:

  • Python 3.11+
  • uv (Gestor de paquetes y proyectos)
  • Node.js 22 LTS
  • AWS CLI v2
  • AWS CDK CLI (npm i -g aws-cdk)

0) Clona el repositorio

Clonar el repositorio de github del proyecto aws-cdk-lightsail-openclaw

git clone https://github.com/r3xakead0/aws-cdk-lightsail-openclaw.git
cd aws-cdk-lightsail-openclaw

Enter fullscreen mode Exit fullscreen mode

1) Prepara el entorno local

Antes de sintetizar o desplegar el stack, prepara tu entorno local instalando las dependencias del proyecto y validando que tus credenciales de AWS estén configuradas correctamente.

Verifica las versiones instaladas

python --version
uv --version
node --version
aws --version
cdk --version

Enter fullscreen mode Exit fullscreen mode

Asegúrate de tener:

  • Python 3.11+
  • uv instalado
  • Node.js 22 LTS
  • AWS CLI v2
  • AWS CDK CLI

Instala las dependencias del proyecto

Desde la raíz del repositorio, ejecuta:

uv sync

Enter fullscreen mode Exit fullscreen mode

Configura tus credenciales de AWS

Si todavía no tienes credenciales configuradas, ejecuta:

aws configure

Enter fullscreen mode Exit fullscreen mode

Ingresa tu:

  • AWS Access Key ID
  • AWS Secret Access Key
  • Default region, por ejemplo us-east-1
  • Default output format, por ejemplo json

Si usas perfiles de AWS, puedes exportar el perfil antes de continuar:

macOS/Linux

export AWS_PROFILE=<TU_PROFILE>

Enter fullscreen mode Exit fullscreen mode

Windows PowerShell

$env:AWS_PROFILE="<TU_PROFILE>"

Enter fullscreen mode Exit fullscreen mode

Valida el acceso a AWS

aws sts get-caller-identity

Enter fullscreen mode Exit fullscreen mode

Deberías ver una salida similar a:

{
  "UserId": "...",
  "Account": "123456789012",
  "Arn": "arn:aws:iam::123456789012:user/your-user"
}

Enter fullscreen mode Exit fullscreen mode

2) Revisa el archivo de configuración

Archivo: config/dev.json

Asegúrate de validar estos campos:

  • account
  • región (ej. us-east-1)
  • availability_zone (ej. us-east-1a)
  • key_pair_name (ej. openclaw-dev-key)
  • ssh_cidr
  • enable_auto_snapshot (false por defecto)

3) Crea/importa el key pair en Lightsail

Importante: tiene que ser de Lightsail (no EC2) y en la misma region especificada en el archivo de configuración.

macOS/Linux

Genera la clave:

ssh-keygen -t rsa -b 4096 -m PEM -f ~/.ssh/openclaw-dev-key -C "openclaw-lightsail"
chmod 600 ~/.ssh/openclaw-dev-key
chmod 644 ~/.ssh/openclaw-dev-key.pub

Enter fullscreen mode Exit fullscreen mode

Impórtala:

aws lightsail import-key-pair \
  --key-pair-name openclaw-dev-key \
  --public-key-base64 "$(cat ~/.ssh/openclaw-dev-key.pub)" \
  --region us-east-1

Enter fullscreen mode Exit fullscreen mode

Valídala:

aws lightsail get-key-pairs \
  --region us-east-1 \
  --query "keyPairs[?name=='openclaw-dev-key'].name" \
  --output table

Enter fullscreen mode Exit fullscreen mode

Windows PowerShell

Genera la clave:

ssh-keygen -t rsa -b 4096 -m PEM -f "$HOME\.ssh\openclaw-dev-key" -C "openclaw-lightsail"

Enter fullscreen mode Exit fullscreen mode

Impórtala:

$pub = Get-Content "$HOME\.ssh\openclaw-dev-key.pub" -Raw
aws lightsail import-key-pair `
  --key-pair-name openclaw-dev-key `
  --public-key-base64 $pub `
  --region us-east-1

Enter fullscreen mode Exit fullscreen mode

Valídala:

aws lightsail get-key-pairs --region us-east-1 --query "keyPairs[?name=='openclaw-dev-key'].name" --output table

Enter fullscreen mode Exit fullscreen mode

4) Bootstrap (solo una vez por cuenta/region)

Linux/macOS

./scripts/linux-mac/dev/bootstrap <ACCOUNT_ID> <REGION>

Enter fullscreen mode Exit fullscreen mode

Windows PowerShell

.\scripts\windows\dev\bootstrap.ps1 -AccountId <ACCOUNT_ID> -Region <REGION>

Enter fullscreen mode Exit fullscreen mode

5) Synth + Diff (para revisar antes de desplegar)

Linux/macOS

./scripts/linux-mac/dev/synth
./scripts/linux-mac/dev/diff

Enter fullscreen mode Exit fullscreen mode

Windows PowerShell

.\scripts\windows\dev\synth.ps1
.\scripts\windows\dev\diff.ps1

Enter fullscreen mode Exit fullscreen mode

6) Deploy

Linux/macOS

./scripts/linux-mac/dev/deploy

Enter fullscreen mode Exit fullscreen mode

Windows PowerShell

.\scripts\windows\dev\deploy.ps1

Enter fullscreen mode Exit fullscreen mode

Cuando termine, verás outputs como:

  • InstanceName
  • StaticIpName
  • PublicIp
  • BedrockRoleArn

7) Verifica que todo este vivo

Conéctate por SSH:

Linux/macOS

ssh -i ~/.ssh/openclaw-dev-key ubuntu@<PUBLIC_IP>

Enter fullscreen mode Exit fullscreen mode

Windows PowerShell

ssh -i "$HOME\.ssh\openclaw-dev-key" ubuntu@<PUBLIC_IP>

Enter fullscreen mode Exit fullscreen mode

Chequeo rápido:

  • abre http://<PUBLIC_IP>
  • revisa la instancia en consola de Lightsail
  • confirma que el rol de Bedrock existe en IAM

8) Destroy cuando termines (para no gastar de mas)

Linux/macOS

./scripts/linux-mac/dev/destroy

Enter fullscreen mode Exit fullscreen mode

Windows PowerShell

.\scripts\windows\dev\destroy.ps1

Enter fullscreen mode Exit fullscreen mode

Solución de problemas

The KeyPair does not exist

  • El key pair no esta en Lightsail, esta en otra region o es de EC2.
  • Solución: crealo/importalo en Lightsail y en la region correcta.

Stack en ROLLBACK_COMPLETE

  • Borra el stack fallido y vuelve a desplegar.

Warning de Node en CDK

  • Ejecuta nvm use para usar Node 22 LTS.

Conclusión

La idea no es solo desplegar una instancia, sino dejar el proceso listo para repetirse sin depender de pasos manuales ni configuraciones perdidas.