Linux ऐप¶
Gateway Linux पर पूरी तरह समर्थित है। Node अनुशंसित रनटाइम है. Bun is not recommended for the Gateway (WhatsApp/Telegram bugs).
Native Linux companion apps are planned. अगर आप एक बनाने में मदद करना चाहते हैं, तो contributions का स्वागत है।
शुरुआती त्वरित मार्ग (VPS)¶
- Node 22+ इंस्टॉल करें
npm i -g openclaw@latestopenclaw onboard --install-daemon- अपने लैपटॉप से:
ssh -N -L 18789:127.0.0.1:18789 <user>@<host> http://127.0.0.1:18789/खोलें और अपना टोकन पेस्ट करें
चरण-दर-चरण VPS मार्गदर्शिका: exe.dev
इंस्टॉल¶
- आरंभ करें
- इंस्टॉल और अपडेट्स
- वैकल्पिक प्रवाह: Bun (प्रायोगिक), Nix, Docker
Gateway¶
Gateway सेवा इंस्टॉल (CLI)¶
इनमें से किसी एक का उपयोग करें:
openclaw onboard --install-daemon
या:
openclaw gateway install
या:
openclaw configure
प्रॉम्प्ट आने पर Gateway सेवा चुनें।
मरम्मत/माइग्रेट:
openclaw doctor
सिस्टम नियंत्रण (systemd उपयोगकर्ता यूनिट)¶
OpenClaw डिफ़ॉल्ट रूप से एक systemd user सेवा इंस्टॉल करता है। system का उपयोग करें service for shared or always-on servers. The full unit example and guidance live in the Gateway runbook.
न्यूनतम सेटअप:
~/.config/systemd/user/openclaw-gateway[-<profile>].service बनाएँ:
[Unit]
Description=OpenClaw Gateway (profile: <profile>, v<version>)
After=network-online.target
Wants=network-online.target
[Service]
ExecStart=/usr/local/bin/openclaw gateway --port 18789
Restart=always
RestartSec=5
[Install]
WantedBy=default.target
इसे सक्षम करें:
systemctl --user enable --now openclaw-gateway[-<profile>].service