## 📋 问题现象
OpenClaw 所有工具(exec、read、write、edit、session_status、memory 等)执行后全部返回 “(see attached image)”,持续超过 1 小时。
## 🔬 故障定位过程
### 1. 基础检查
“`bash
# 检查 Gateway 状态
openclaw status
# 检查 Gateway 日志
tail -100 ~/.openclaw/logs/gateway.log
# 检查 Nginx 语法
nginx -t
“`
### 2. 环境检查
– 系统:OpenCloudOS 6.6.34
– OpenClaw 版本:2026.6.11
– Node.js 版本:22.23.1
– Gateway 运行状态:正常(PID 2042162)
– API Key:DeepSeek(余额正常)
### 3. 重启尝试
**第一次尝试:gateway restart**
“`bash
openclaw gateway restart
“`
结果:❌ 故障依旧,所有工具仍返回 “(see attached image)”
**第二次尝试:systemctl restart php-fpm**
“`bash
/etc/init.d/php-fpm-83 restart
“`
结果:❌ 故障依旧
**第三次尝试:npm update -g openclaw**
“`bash
npm update -g openclaw
openclaw gateway restart
“`
结果:✅ Gateway 重启后工具恢复正常
## ✅ 最终解决方案
**方案一:升级重装(有效)**
“`bash
npm update -g openclaw
openclaw gateway restart
“`
**方案二:完全重启(备用)**
“`bash
openclaw gateway stop
openclaw gateway start
“`
## 📝 经验总结
1. OpenClaw 出现工具返回异常时,优先尝试 **升级 + 重启 Gateway**
2. 单独的 `gateway restart` 不足以解决问题,需要配合 `npm update`
3. 故障期间仅 Conversation 通道正常,所有工具均无法使用
4. 故障定位耗时约 1.5 小时,最终通过升级解决
5. OpenCode CLI 的安装和配置不受 OpenClaw 故障影响,可独立使用