跳转至

故障排查

文档站点显示 “There isn't a GitHub Pages site here” / “GitHub Pages is designed to host…”

如果你访问 https://os.rexai.top/ 看到的是 GitHub Pages 的占位/404 页面,通常说明:

  • 仓库的 Pages 还没有启用(或没有选择 GitHub Actions 作为构建来源)
  • Docs 工作流没有成功部署

修复(维护者操作):

1) 打开仓库:Settings → Pages 2) 在 Build and deployment 下,把 Source 设为 GitHub Actions 3) 去 Actions 里重新运行 Docs 工作流

验证:

curl -I https://os.rexai.top/

预期:返回 200(至少不再是 GitHub “Site not found” 的 404 页面)。


Ollama:连不上 / 模型不存在

RexOS 默认把 Ollama 指向 http://127.0.0.1:11434/v1

1) 确认 Ollama 已启动:

ollama serve

2) 验证 OpenAI 兼容接口:

curl -s http://127.0.0.1:11434/v1/models | head

3) 如果默认模型没拉取,先 pull(或改 ~/.rexos/config.tomldefault_model):

ollama pull llama3.2

Windows:bash/WSL 相关问题

如果你看到类似错误:

  • Windows Subsystem for Linux has no installed distributions

一般是你在 Windows 上调用了 “指向 WSL 的 bash 启动器”。建议优先使用:

  • .\init.ps1(PowerShell)

harness workspace 会同时生成 init.shinit.ps1


Provider API key 没生效

RexOS 会从 ~/.rexos/config.tomlapi_key_env 指定的环境变量读取 key。

例如(智谱 GLM 原生):

export ZHIPUAI_API_KEY="id.secret"

如果 key 形如 id.secret,RexOS 会自动签发短期 JWT(无需你手动生成 token)。