Create New Document

The title of your document (will be displayed as H1)
URL-friendly name (no spaces, use dashes)
Path where to create document (optional, use forward slashes to create subdirectories)

Move/Rename Document

Current location of the document
New path for the document (including the slug)
This only changes the document's path. It does not modify the document's title (H1 heading).

Delete Document

Are you sure you want to delete this document? This action cannot be undone.

Warning: If this is a folder, all contents including subfolders and documents will be deleted.

Message

Message content goes here.

Confirm Action

Are you sure?

Attachments

Allowed file types: jpg, jpeg, png, gif, svg, webp, txt, log, csv, sfd, zip, pdf, docx, xlsx, pptx, mp4 (Max: 10MB)

Document Files

Loading attached files...

Document History

Previous Versions

Loading versions...

Preview

Select a version to preview

Wiki Settings

Language for the user interface
Number of versions to keep per document. Set to 0 to disable versioning.
Maximum allowed file size for uploads in MB.

User Management

Add New User

Leave empty to keep current password
Users with these groups can access restricted sections.

Define path-based access rules for sections of your wiki, then assign users to groups in the Users tab. Rules are evaluated in order. First match wins.

Active Rules

Import markdown files from a ZIP archive. Files will be processed and stored in the appropriate document structure. Directory structure in the ZIP (category/subcategory) will be preserved in the wiki.

Upload a ZIP file containing markdown (.md) files to import.

Create and manage backups of your wiki data. Backups include all documents, images, and configuration files.

Available Backups

Loading backups...

Add/Edit Access Rule

Selected: /

Add Column

Banner

openclaw

根因确认:

你的 Node.js 是 Kali 通过 apt 装的(24.18.0+dfsg+~cs24.13.2-1),Debian/Kali 打包时对 Node 做了裁剪,OpenClaw 检测到的是系统 SQLite 3.46.1(太老)。而官方原版 Node v24.18.0 内置的是 SQLite 3.53.2,完全达标。

所以不是版本号的问题,是安装源的问题。 解决方案是用 n 工具装官方原版 Node,替换掉 apt 版的。


以下是完整的六步操作,直接逐条复制执行:

第一步:停掉 OpenClaw 服务

复制

systemctl --user stop openclaw-gateway

第二步:安装 Node 版本管理工具 n

复制

npm cache clean -f
npm install -g n

第三步:用 n 安装官方原版 Node v24.18.0 LTS

复制

n 24.18.0

装完后确认是否生效:

复制

# 检查/usr/local/bin 下的 node 是否指向新的
/usr/local/bin/node --version
# 应该输出 v24.18.0

第四步:修改 systemd 服务文件,指向新的 Node

因为系统服务文件里写死了 /usr/bin/node,我们要改成 /usr/local/bin/node

复制

sed -i 's|ExecStart=/usr/bin/node|ExecStart=/usr/local/bin/node|' ~/.config/systemd/user/openclaw-gateway.service

改完确认一下:

复制

grep ExecStart ~/.config/systemd/user/openclaw-gateway.service
# 应该输出: ExecStart=/usr/local/bin/node /usr/local/lib/node_modules/openclaw/dist/index.js gateway --port 18789

第五步:重新安装 OpenClaw 最新版

复制

npm install -g openclaw@latest

第六步:启动并验证

复制

systemctl --user daemon-reload
systemctl --user start openclaw-gateway
openclaw status

如果没有 SQLite 报错,启动正常,就搞定了。🦁


如果还有问题,执行以下命令把输出贴给我看:

复制

journalctl --user -u openclaw-gateway --no-pager -n 30

Attached Files

Loading attached files...
Search Results