Hello everyone, this is programmer Wan Feng actively working on various AI projects.
After Tencent sponsored OpenClaw, many enterprises and developers asked me: "What are the new changes for deploying OpenClaw now?"
The answer: Deployment is simpler, enterprise-level features are stronger.
Today's beginner-friendly tutorial takes you from zero to deploy a production-level OpenClaw environment.
📋 Deployment Solutions Comparison
| Solution | Suitable Scenario | Cost | Difficulty | Recommended Index |
|---|---|---|---|---|
| Local deployment | Learning, testing | Free | ⭐ | ⭐⭐⭐ |
| Tencent Cloud Lighthouse | Individual/small team | ¥88/month | ⭐⭐ | ⭐⭐⭐⭐⭐ |
| Tencent Cloud CVM | Medium/large enterprise | ¥500+/month | ⭐⭐⭐ | ⭐⭐⭐⭐ |
| Containerized deployment | Large-scale cluster | Pay as you go | ⭐⭐⭐⭐ | ⭐⭐⭐⭐ |
Recommended: 90% of users choose Tencent Cloud Lighthouse, best cost-performance ratio.
🚀 Solution 1: Tencent Cloud Lighthouse Server Deployment (Recommended)
Step 1: Purchase Server
- Visit Tencent Cloud Lighthouse
- Select configuration:
- CPU: 2 cores
- Memory: 4GB
- System: Ubuntu 22.04 LTS
- Region: Choose the nearest one
- Use OpenClaw exclusive discount code:
OPENCLAW2026(first month 50% off)
Step 2: SSH Connect to Server
1 | ssh root@your_server_ip |
Step 3: Install Basic Environment
1 | # Update system |
Step 4: Install OpenClaw
1 | # Create user |
Step 5: Configure Environment Variables
1 | # Create configuration file |
Step 6: Start Service
# Method 1: Foreground (for testing)
openclaw gateway start
# Method 2: Background (production environment)
nohup openclaw gateway start > openclaw.log 2>&1 &
# Method 3: Systemd service (recommended)
cat > /etc/systemd/system/openclaw.service << EOF
[Unit]
Description=OpenClaw Gateway
After=network.target
