Arama Yap Mesaj Submit
Request a Callback
+90
X
X

Select Your Currency

Turkish Lira $ US Dollar Euro
X
X

Select Your Currency

Turkish Lira $ US Dollar Euro

Contact Us

Location Halkali merkez neighborhood fatih st ozgur apt no 46 , Kucukcekmece , Istanbul , 34303 , TR

OpenClaw (Clawdbot) Secure Installation Guide

Securely host your own AI assistant. OpenClaw installation, Docker The most comprehensive technical guide to isolation, security hardening and performance optimizations of 2026 .

1 What is OpenClaw?

OpenClaw (formerly known as Clawdbot or Moltbot) uses your own data rather than third-party cloud providers. It is an open source and modular AI assistant platform that allows you to keep it on your server. Telegram, Discord, It can integrate with popular messaging applications such as Slack and thanks to the "Skills" system It can gain unlimited features with Python/JS based plugins.

Due to increasing data privacy concerns and KVKK/GDPR compliance, especially in 2026 , businesses and developers own yapay zeka prefers to host his assistants.

Critical Security Alert

OpenClaw is a capable tool, but when configured incorrectly it can cause serious vulnerabilities (RCE) on your server. - Remote Code Execution). It is vital that you do not skip the security steps described in this guide. carries.

Data Privacy

Your chat data and API keys remain on your own server.

extensible

Hundreds of community-made skills or your own scripts.

2 OpenClaw Basic Features

OpenClaw offers comprehensive features that go beyond traditional AI assistants. Here's what makes it unique abilities:

Permanent Memory

Remembers conversation history between sessions. Learns your preferences and provides personalized responses presents.

Proactive Notifications

Initiates communication without you asking: morning briefings, weather alerts, calendar reminders.

Agentic AI

Completes complex multi-step tasks autonomously. It performs computer control and browser automation.

40+ Skill Add-on

Google Workspace, GitHub, calendar, email, file processing, web scraping modules are ready.

Voice Interaction

Support for speaking commands and receiving voice responses on macOS, iOS and Android devices.

Multi-LLM Support

Works with OpenAI GPT-4, Claude 3.5, Gemini, DeepSeek, and native Ollama models.

3 Supported Messaging Platforms

OpenClaw can connect to multiple messaging platforms simultaneously with a single installation:

WhatsApp
Telegram
Discord
Slack
Teams
signal
iMessage
Google Chat

Also Matrix, BlueBubbles, Zalo and WebChat support is also available.

4 Supported Integrations and Skills

OpenClaw has a broad integration ecosystem. Here are the supported categories:

AI Models

  • Anthropic Claude Pro/Max/Opus
  • OpenAI GPT-4, GPT-5, o1
  • Google Gemini 2.5 Pro/Flash
  • xAI Grok 3 & 4
  • DeepSeek V3 & R1
  • Mistral Large & Codestral
  • Ollama, LM Studio (Local)

Productivity Tools

  • Apple Notes & Reminders
  • Notion Workspace
  • Obsidian Knowledge Graph
  • Trello Kanban
  • GitHub Issues & PRs
  • Things 3 GTD
  • Bear Notes

Automation Tools

  • Browser (Chrome/Chromium)
  • Gmail Pub/Sub Triggers
  • Cron Scheduled Tasks
  • Webhooks External Triggers
  • 1Password Secure Identity
  • Weather Hava Durumu
  • Voice Wake & Talk Mode

Music & Sound

  • Spotify Music Control
  • Sonos Multi-Room
  • Shazam Song Recognition

Smart Home

  • Philips Hue Lighting
  • Home Assistant Hub
  • 8Sleep Smart Bed

Media & Creative

  • Image Gen
  • GIF Search
  • Camera Control
  • Twitter/X Integration

To see all integrations: openclaw.ai/integrations

5 System Requirements and Recommended Infrastructure

OpenClaw requires modern Node.js infrastructure. For a stable and safe experience: We recommend the configuration:

Operating System

  • Ubuntu 22.04 LTS or 24.04 LTS (Recommended)
  • Debian 12 Bookworm
  • AlmaLinux 9

Hardware

  • CPU: Minimum 2 vCPU (for AI operations)
  • RAM: Minimum 4 GB (for Node.js and Docker)
  • Disc: 40 GB NVMe SSD (Fast log and database access)

For our servers that fully meet these requirements and are optimized for AI projects VPS Server or for higher performance VDS Rental You can review our pages.

6 Secure Installation (Standard Method)

The following steps describe how to install OpenClaw on a clean Ubuntu server. sudo instead of root user It is recommended that you use an authorized user.

1. Node.js 22+ Installation

bash — server
# Update system packages sudo apt update && sudo apt upgrade -y # Add the NodeSource repository (for Node.js 22 ) curl -fsSL https://deb.nodesource.com/setup_22.x | sudo -E bash - # Install Node.js sudo apt install -y nodejs # Verify version node -v

2. OpenClaw Kernel Installation

bash — installation
# Run the official installation script curl -fsSL https://openclaw.bot/install.sh | bash # Set as daemon (service) openclaw onboard --install-daemon # Check installation health openclaw doctor

7 Critical Security Hardening

OpenClaw comes with developer-friendly settings by default, but these settings are not for production servers. is unsafe. Be sure to follow the steps below.

4.1 Close Out Gateway

OpenClaw's administration panel or API gateway may be open to all IPs by default. just do it localhostPull to .

config.json (Sample Configuration)
"gateway": { "bind": "127.0.0.1", "port": 18789 }

4.2 Strong Token Usage

Be sure to use token-based authentication for access. A long token that is impossible to guess Determine.

config.json (Auth)
"auth": { "mode": "token", "token": "X9z#mK2$pL5vN8@jR4!qW7yH3sB6*dC1" }

4.3 Firewall and VPN Usage

Never open your server's management ports, such as 18789 , to the internet. To access the administration panel:

  • SSH Tunneling: ssh -L 18789:127.0.0.1:18789 user@sunucu_ip local with command connect from your computer.
  • Tailscale/WireGuard: By including your server in a VPN network, access only from within the VPN give it
  • UFW (Firewall): Allow only required ports (e.g. 80, 443, 22).

7 Isolated Installation with Docker (Safest Method)

Isolating OpenClaw from the main operating system allows an attacker to take over the entire server in case of a possible security vulnerability. prevents it from passing through. As Eka Sunucu Cloud Server We strongly recommend the use of Docker in our infrastructures.

bash — docker run
# Create permanent data folder mkdir -p /opt/openclaw/data # Start the container (bind to Localhost by) docker run -d \ --name openclaw \ --restart unless-stopped \ -p 127.0.0.1:18789:18789 \ -v /opt/openclaw/data:/root/.openclaw \ openclaw/openclaw:latest

8 Windows (WSL2) Installation

To run OpenClaw on Windows WSL2 (Windows Subsystem for Linux 2) use recommended. Follow the steps below:

1. WSL2 + Ubuntu Installation

PowerShell (Admin)
# WSL2 installation wsl --install # Or select a specific distribution wsl --install -d Ubuntu-24.04

2. Systemd Activation (Required for Gateway)

bash — WSL Ubuntu
# Edit wsl.conf file sudo tee /etc/wsl.conf >/dev/null <<'EOF'< /span> [boot] systemd=true EOF # Restart WSL (in PowerShell) wsl --shutdown

3. OpenClaw Installation (Within WSL)

bash — WSL Ubuntu
# Quick installation script curl -fsSL https://openclaw.ai/install.sh | bash # Or via npm npm install -g openclaw@latest # Install the daemon service openclaw onboard --install-daemon
Windows PowerShell Alternative

If you do not want to use WSL, direct installation with PowerShell is also possible:

iwr -useb https://openclaw.ai/install.ps1 | iex

9 OpenClaw Uninstall

To completely remove OpenClaw from the system, follow these steps:

1. Stop Gateway Service

bash
openclaw gateway stop openclaw uninstall --all --yes

2. Delete Configuration Files

bash — Linux/macOS
# OpenClaw configuration folders rm -rf ~/.openclaw rm -rf ~/.clawdbot rm -rf ~/.moltbot rm -rf ~/.molthub

3. Uninstall CLI

bash
# if installed with npm npm rm -g openclaw # if installed with pnpm pnpm remove -g openclaw

4. Revoke OAuth Tokens (Important!)

Security Warning

OpenClaw uses long-lived OAuth tokens. Deleting the app is not enough! In the following services Manually remove OpenClaw/Moltbot permissions:

5. Windows Custom Clean (PowerShell)

PowerShell (Admin)
# Delete configuration folders Remove-Item -Recurse -Force "$env:USERPROFILE\.openclaw" Remove-Item -Recurse -Force "$env:USERPROFILE\.clawdbot" # Search for ruins Get-ChildItem -Path $env:USERPROFILE -Recurse -Filter "*openclaw*"

10 Frequently Asked Questions

OpenClaw (formerly Clawdbot or Moltbot) running on your own server or local machine is an open source AI assistant platform. WhatsApp, Telegram, Discord, Slack, Signal, It can integrate with popular messaging applications such as Microsoft Teams. Skill system Thanks to it, you can gain unlimited features with Python/JS based plugins. Your data is third party It does not go to the servers, it remains completely under your control.

OpenClaw officially supports the following platforms: WhatsApp, Telegram, Discord, Slack, Google Chat, Signal, iMessage, Microsoft Teams, Matrix, BlueBubbles, Zalo and WebChat. a single With the installation, you can connect to multiple platforms simultaneously.

OpenClaw is not an AI model per se, it is an execution framework framework). It works integrated with external large language models (LLM): OpenAI GPT-4/GPT-4o, Anthropic Claude 3.5, Google Gemini, DeepSeek, Ollama (native models) and more. API You can use the model you want by configuring your switch.

Yes, OpenClaw core software It is open source and completely free. But two cost item can be: 1) VPS/VDS server cost for hosting (starts from ~150₺ per month), 2) Cost of the AI API you will use (OpenAI, Claude, etc.) or free native models (Ollama) you can use

Yes, you can install it on your PC running Windows (WSL2 recommended), macOS or Linux. However 7/24 VDS server is more stable for a bot that needs to be active is a solution. The bot is disabled when your computer shuts down or goes to sleep.

Most chatbots reset between sessions, forgetting previous conversations. If OpenClaw speech preserves its memory between sessions. Today you can remember a question you asked yesterday, can learn specific preferences and provide personalized responses.

OpenClaw can initiate communication without you asking. For example: morning briefings, weather alerts, calendar reminders, stock market notifications can send. Can be customized with skill system You can set up automations.

It is OpenClaw's modular extension system. 40+ community plugin Available: Google Workspace integration, GitHub automation, calendar management, email reading/writing, file processing, web scraping and more. You can write your own skills in Python or JavaScript.

It is secure when configured correctly. Critical security steps: Gateway to localhost connect, use strong token authentication, isolate with Docker, apply firewall rules. Never install unreliable skills. Be sure to follow the security section in this guide.

OpenClaw uses a lightweight JSON or SQLite structure by default. For high performance Redis or MongoDB Integrations are also possible. For big projects physical Server You can evaluate our options.

Evet, OpenClaw macOS, iOS and Android Supports voice interaction across devices. talking You can give commands and receive voice responses. Activating the relevant sound modules for this feature must.

Yes! OpenClaw can control web browser: form filling, web scraping, auto login make, take screenshot can perform operations such as. Thanks to the Agentic AI feature can complete complex multi-step tasks autonomously.

Start Your Own AI Assistant Today!

High-performance and secure infrastructure optimized for OpenClaw is on Eka Sunucu. NVMe SSD disks, Let your bot 7/24 run without interruption with DDoS protection and high line capacity.

150₺ Prices starting from /month
NVMe SSD Disks
DDoS Protection
7/24 Technical Support
1 Gbps Connection
Top