π¦ ClawHub
Openclaw Remote Install
by @codeblackhole1024
One-click remote OpenClaw deployment via SSH. Auto-detects OS and selects best method (Docker/Podman/npm). Use when: (1) Installing on VPS/cloud servers, (2)...
π‘ Examples
Quick Start (Auto-detect)
./scripts/install_openclaw_remote.sh
Async Installation (Recommended for long-running installs)
# Run installation in background with progress monitoring
./scripts/install_openclaw_remote.sh --asyncMonitor in real-time
tail -f ~/.openclaw/remote-install-logs/latest/install_output.logCheck status
cat ~/.openclaw/remote-install-logs/latest/install_status
With Password
./scripts/install_openclaw_remote.sh --password-based
Force Specific Method
# Docker installation
./scripts/install_openclaw_remote.sh --dockerPodman installation
./scripts/install_openclaw_remote.sh --podmannpm method (if Node 22+ available)
./scripts/install_openclaw_remote.sh --method npm
Non-interactive (Automation)
./scripts/install_openclaw_remote.sh \
--non-interactive \
--configure
Custom Log Directory
./scripts/install_openclaw_remote.sh \
--log-dir /path/to/custom/logs
π Tips & Best Practices
SSH Issues
# Check key permissions
chmod 600 ~/.ssh/id_rsaAdd to ssh-agent
ssh-add ~/.ssh/id_rsa
Installation Issues
~/.openclaw/logs/Docker Issues
# Check Docker status
docker psView logs
docker logs openclawRestart container
docker restart openclaw
TERMINAL
clawhub install openclaw-remote-install