Ansible
Ansible Installation
The recommended way to deploy RemoteClaw to production servers is via remoteclaw-ansible โ an automated installer with security-first architecture.
Quick Start
One-command install:
curl -fsSL https://raw.githubusercontent.com/remoteclaw/remoteclaw-ansible/main/install.sh | bash๐ฆ Full guide: github.com/remoteclaw/remoteclaw-ansible
The remoteclaw-ansible repo is the source of truth for Ansible deployment. This page is a quick overview.
What You Get
- ๐ Firewall-first security: UFW + Docker isolation (only SSH + Tailscale accessible)
- ๐ Tailscale VPN: Secure remote access without exposing services publicly
- ๐ณ Docker: Isolated sandbox containers, localhost-only bindings
- ๐ก๏ธ Defense in depth: 4-layer security architecture
- ๐ One-command setup: Complete deployment in minutes
- ๐ง Systemd integration: Auto-start on boot with hardening
Requirements
- OS: Debian 11+ or Ubuntu 20.04+
- Access: Root or sudo privileges
- Network: Internet connection for package installation
- Ansible: 2.14+ (installed automatically by quick-start script)
What Gets Installed
The Ansible playbook installs and configures:
- Tailscale (mesh VPN for secure remote access)
- UFW firewall (SSH + Tailscale ports only)
- Docker CE + Compose V2 (for agent sandboxes)
- Node.js 22.x + pnpm (runtime dependencies)
- RemoteClaw (host-based, not containerized)
- Systemd service (auto-start with security hardening)
Note: The gateway runs directly on the host (not in Docker), but agent sandboxes use Docker for isolation. See Gateway configuration for details.
Post-Install Setup
After installation completes, switch to the remoteclaw user:
sudo -i -u remoteclawThe post-install script will guide you through:
- Onboarding wizard: Configure RemoteClaw settings
- Provider login: Connect WhatsApp/Telegram/Discord/Signal
- Gateway testing: Verify the installation
- Tailscale setup: Connect to your VPN mesh
Quick commands
# Check service statussudo systemctl status remoteclaw
# View live logssudo journalctl -u remoteclaw -f
# Restart gatewaysudo systemctl restart remoteclaw
# Provider login (run as remoteclaw user)sudo -i -u remoteclawremoteclaw channels loginSecurity Architecture
4-Layer Defense
- Firewall (UFW): Only SSH (22) + Tailscale (41641/udp) exposed publicly
- VPN (Tailscale): Gateway accessible only via VPN mesh
- Docker Isolation: DOCKER-USER iptables chain prevents external port exposure
- Systemd Hardening: NoNewPrivileges, PrivateTmp, unprivileged user
Verification
Test external attack surface:
nmap -p- YOUR_SERVER_IPShould show only port 22 (SSH) open. All other services (gateway, Docker) are locked down.
Docker Availability
Docker is installed for agent sandboxes (isolated tool execution), not for running the gateway itself. The gateway binds to localhost only and is accessible via Tailscale VPN.
See Multi-Agent Routing for sandbox configuration.
Manual Installation
If you prefer manual control over the automation:
# 1. Install prerequisitessudo apt update && sudo apt install -y ansible git
# 2. Clone repositorygit clone https://github.com/remoteclaw/remoteclaw-ansible.gitcd remoteclaw-ansible
# 3. Install Ansible collectionsansible-galaxy collection install -r requirements.yml
# 4. Run playbook./run-playbook.sh
# Or run directly (then manually execute /tmp/remoteclaw-setup.sh after)# ansible-playbook playbook.yml --ask-become-passUpdating RemoteClaw
The Ansible installer sets up RemoteClaw for manual updates. See Updating for the standard update flow.
To re-run the Ansible playbook (e.g., for configuration changes):
cd remoteclaw-ansible./run-playbook.shNote: This is idempotent and safe to run multiple times.
Troubleshooting
Firewall blocks my connection
If youโre locked out:
- Ensure you can access via Tailscale VPN first
- SSH access (port 22) is always allowed
- The gateway is only accessible via Tailscale by design
Service wonโt start
# Check logssudo journalctl -u remoteclaw -n 100
# Verify permissionssudo ls -la /opt/remoteclaw
# Test manual startsudo -i -u remoteclawcd ~/remoteclawpnpm startDocker sandbox issues
# Verify Docker is runningsudo systemctl status docker
# Check sandbox imagesudo docker images | grep remoteclaw-sandbox
# Build sandbox image if missingcd /opt/remoteclaw/remoteclawsudo -u remoteclaw ./scripts/sandbox-setup.shProvider login fails
Make sure youโre running as the remoteclaw user:
sudo -i -u remoteclawremoteclaw channels loginAdvanced Configuration
For detailed security architecture and troubleshooting:
Related
- remoteclaw-ansible โ full deployment guide
- Docker โ containerized gateway setup
- Gateway configuration โ agent sandbox configuration
- Multi-Agent Routing โ per-agent isolation