【Openclaw】unauthorized: gateway token mismatch (open the dashboard URL and paste the token in Co
unauthorized: gateway token mismatch (open the dashboard URL and paste the token in Control UI settings)
故障现象:
使用Windows下的浏览器打开Openclaw的聊天界面(之前是可以正常使用的),结果报错:

故障原因:
可能是服务器Ubantu里面的Openclaw出了问题。
解决办法:
在乌班图Ubantu的terminal里面输入这两个命令:
Ubantu里面的Firfox浏览器就可以正常访问了。

Thanks to :
1). Kimi
OpenClaw 是一个开源的《猫和老鼠》游戏克隆项目。要重新启动它,你需要先停止正在运行的进程,然后重新启动。
以下是常用的 Linux 命令:
查找并终止现有进程
```bash
# 查找 OpenClaw 进程
ps aux | grep openclaw
# 或使用 pgrep
pgrep -a openclaw
```
终止进程
```bash
# 使用 kill 命令(将 <PID> 替换为实际的进程ID)
kill <PID>
# 或强制终止
kill -9 <PID>
# 或使用 pkill 直接按名称终止
pkill openclaw
```
重新启动 OpenClaw
```bash
# 进入 OpenClaw 目录并运行
cd /path/to/openclaw
./openclaw
# 或者如果已安装到系统路径
openclaw
```
一键重启脚本
```bash
# 终止并重启
pkill openclaw && sleep 2 && /path/to/openclaw/openclaw
```