← 返回
AI智能 中文

Openclaw Gateway Fd Fix

Fix OpenClaw Gateway "spawn EBADF" / "RPC probe failed" / "EMFILE too many open files" errors caused by file descriptor exhaustion from too many files in wor...
修复 OpenClaw Gateway 工作目录文件过多导致文件描述符耗尽引发的 "spawn EBADF"、"RPC probe failed" 及 "EMFILE too many open files" 错误。
thomaszhang2661
AI智能 clawhub v1.0.0 1 版本 100000 Key: 无需
★ 0
Stars
📥 987
下载
💾 22
安装
1
版本
#latest

概述

OpenClaw Gateway File Descriptor Exhaustion Fix

Problem

OpenClaw Gateway crashes or hangs with these errors:

  • spawn EBADF when running exec commands
  • RPC probe failed / gateway timeout
  • Logs show EMFILE: too many open files, watch
  • Gateway process is running but unresponsive

Root Cause

The Gateway automatically watches all files under ~/.openclaw/workspace/ for changes. If you place virtual environments (.venv), node_modules, large datasets, or tens of thousands of small files inside workspace, the file watcher will exceed macOS's default file descriptor limit (256), causing the process to hang.

Usage

Auto-Fix (Recommended)

Run the one-click repair script:

bash fix.sh

What it does:

  1. Detects workspace file count
  2. Finds and removes unnecessary dependency directories (.venv, node_modules) inside workspace
  3. Backs up your existing LaunchAgent plist
  4. Updates LaunchAgent to set file descriptor limit to 524,288
  5. Restarts the Gateway service
  6. Verifies service health

Manual Fix Steps

If you prefer to fix manually:

  1. Remove large directories from workspace:

```bash

# Never put these inside ~/.openclaw/workspace/:

rm -rf ~/.openclaw/workspace/*/.venv

rm -rf ~/.openclaw/workspace/*/node_modules

# Move datasets/models/venvs to ~/Downloads/ or /tmp/

```

  1. Update LaunchAgent resource limits:

Edit ~/Library/LaunchAgents/ai.openclaw.gateway.plist and add inside the root :

```xml

HardResourceLimits

NumberOfFiles

524288

SoftResourceLimits

NumberOfFiles

524288

```

  1. Restart Gateway:

```bash

launchctl bootout gui/$(id -u) ~/Library/LaunchAgents/ai.openclaw.gateway.plist

launchctl bootstrap gui/$(id -u) ~/Library/LaunchAgents/ai.openclaw.gateway.plist

sleep 10 && openclaw gateway status

```

Permanent Rule (NEVER BREAK)

Do NOT put these inside ~/.openclaw/workspace/:

  • Python virtual environments (.venv, venv)
  • Node.js node_modules directories
  • Large datasets (>1000 files)
  • AI model weights (.pt, .bin, .pth files)
  • Cache directories with thousands of small files

Put these outside workspace: /tmp/, ~/Downloads/, or any directory outside ~/.openclaw/workspace/

Verification

After fix, run:

openclaw gateway status

You should see RPC probe: ok in the output.

Troubleshooting

If fix fails:

  1. Check logs: tail -50 ~/.openclaw/logs/gateway.err.log
  2. Verify no large directories remain in workspace: find ~/.openclaw/workspace -type f | wc -l (should be < 1000)
  3. Manually restart Gateway: openclaw gateway stop && openclaw gateway install

版本历史

共 1 个版本

  • v1.0.0 当前
    2026-03-29 09:18 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

ai-intelligence

Self-Improving + Proactive Agent

ivangdavila
自我反思+自我批评+自我学习+自组织记忆。智能体评估自身工作、发现错误并持续改进。
★ 1,349 📥 317,694
ai-intelligence

Proactive Agent

halthelobster
将AI智能体从任务执行者升级为主动预判需求、持续优化的智能伙伴。集成WAL协议、工作缓冲区、自主定时任务及实战验证模式。Hal Stack核心组件 🦞
★ 833 📥 212,774
ai-intelligence

self-improving agent

pskoett
捕获经验教训、错误和纠正,以实现持续改进。使用时机:(1)命令或操作意外失败;(2)用户纠正……
★ 4,055 📥 795,847