Token导航 LogoToken导航TokenDH.com
效率敏感数据clawhub未标认证来源可访问clear审计提醒

mobazha-standalone-setupmobazha 独立设置

Agent Skill

mobazha-standalone-setup 用于辅助部署、云资源、容器和基础设施运维,适合在 OpenClaw 中需要检查配置、整理部署步骤或排查环境问题时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

3,881

周安装

157

GitHub Stars

公开资料未说明

下载量

1,218
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:mobazha-standalone-setup(mobazha 独立设置)
来源仓库:https://github.com/fengzie/mobazha-standalone-setup
安装命令:
openclaw skills install mobazha-standalone-setup
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install mobazha-standalone-setup

简介

使用 Docker 在任何 Linux VPS 上部署自托管 Mobazha 商店。当用户想要在服务器上设置独立商店时使用。

SKILL.md

name
standalone-setup
description
Deploy a self-hosted Mobazha store on any Linux VPS using Docker. Use when the user wants to set up a standalone store on a server.
requires_credentials
true
credential_types

Standalone Store Setup

Deploy a fully independent Mobazha store on any Linux VPS with a single command. Docker-based with automatic updates.

Official guide: <https://mobazha.org/self-host>

Prerequisites

  • A Linux VPS (Ubuntu 22.04+ or Debian 12+) with 2+ CPU cores, 2+ GB RAM, 20+ GB SSD
  • Root or sudo access
  • (Optional) A domain name pointed to the VPS IP

Recommended VPS Providers

ProviderSpecPrice
Hetzner2 vCPU / 4 GB / 40 GB SSD~€4.5/mo
Contabo4 vCPU / 8 GB / 50 GB SSD~€6/mo
DigitalOcean2 vCPU / 4 GB / 80 GB SSD~$24/mo
Vultr2 vCPU / 4 GB / 80 GB SSD~$24/mo

Step-by-Step Deployment

Step 1: Connect to Your VPS

If the user provides an IP and password, connect via SSH:

ssh root@<IP_ADDRESS>

If the user provides an SSH key, use:

ssh -i <KEY_PATH> root@<IP_ADDRESS>

Step 2: Install the Standalone Store

For a full list of installer flags and post-install file locations, see references/install-flags.md.

Security note: The commands below download and execute a shell script from get.mobazha.org. Before running, you can review the script by opening the URL in a browser or running curl -sSL https://get.mobazha.org/standalone | less. Only proceed if the user confirms they trust the source.

Zero-config (most common):

curl -sSL https://get.mobazha.org/standalone | sudo bash

With a pre-configured domain (enables auto-TLS via Let's Encrypt):

curl -sSL https://get.mobazha.org/standalone | sudo bash -s -- --domain shop.example.com

Privacy mode with Tor:

curl -sSL https://get.mobazha.org/standalone | sudo bash -s -- --overlay tor

Using testnets (for trying things out without real money):

curl -sSL https://get.mobazha.org/standalone | sudo bash -s -- --testnet

Flags can be combined:

curl -sSL https://get.mobazha.org/standalone | sudo bash -s -- --domain shop.example.com --overlay tor --testnet

Step 3: What Happens During Installation

The installer automatically:

  1. Installs Docker if not already present
  2. Downloads the Docker Compose configuration to /opt/mobazha/
  3. Generates a unique API key
  4. Starts the Mobazha services (node, frontend, reverse proxy)
  5. Sets up a systemd timer for hourly auto-updates
  6. Installs the mobazha-ctl management CLI to /usr/local/bin/

Step 4: Complete the Store Onboarding

Open the store admin panel in a browser:

  • With domain: https://shop.example.com/admin
  • Without domain: http://<VPS_IP>/admin

On first visit, a Setup Wizard appears with 4 steps:

  1. Set admin password — required before anything else
  2. Store profile — name, description, avatar
  3. Region and currency — country and display currency
  4. Done — dashboard unlocked, next steps suggested

For the full onboarding walkthrough (including API-based setup by AI agents), see the store-onboarding skill.

After onboarding, consider connecting your AI agent to the store for hands-free management — see the store-mcp-connect skill.

Step 5: Verify the Installation

mobazha-ctl status

Or check the health endpoint:

curl -sS http://localhost/healthz

Management Commands

CommandDescription
mobazha-ctl statusShow service status
mobazha-ctl logsView service logs
mobazha-ctl set-domain <domain>Add or change the store domain
cd /opt/mobazha && docker compose downStop all services
cd /opt/mobazha && docker compose up -dStart all services
cd /opt/mobazha && docker compose pull && docker compose up -dManual update

Adding a Domain Later

If you installed without a domain and want to add one:

  1. Point your domain's DNS A record to the VPS IP
  2. Run: mobazha-ctl set-domain shop.example.com
  3. The store will automatically obtain a TLS certificate

Enabling Privacy Overlay Later

You can enable Tor or Lokinet after installation from Admin → System → Network in the store dashboard, without re-installing.

Backup and Restore

Store data lives in /opt/mobazha/data/. To back up:

cd /opt/mobazha && docker compose down
tar czf ~/mobazha-backup-$(date +%Y%m%d).tar.gz data/
docker compose up -d

Troubleshooting

Port 80/443 already in use

Stop existing web servers (Apache, Nginx) before installing:

systemctl stop nginx apache2 2>/dev/null; true

Firewall blocking ports

Allow HTTP/HTTPS traffic:

ufw allow 80/tcp && ufw allow 443/tcp

Or with firewalld:

firewall-cmd --permanent --add-service=http --add-service=https && firewall-cmd --reload

Check container logs

cd /opt/mobazha && docker compose logs -f

Credential Handling

If the user provides a VPS IP and root password:

  1. Ask for explicit confirmation before connecting to the VPS via SSH
  2. Use SSH to connect to the VPS
  3. Run the installation command
  4. Report the store URL back to the user
  5. Remind the user to change the default SSH password for security

Never store or log credentials. After the session, credentials are not retained. The agent must not transmit credentials to any third party or persist them beyond the immediate command execution.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

84.85%
按下载量换算1,033

安全审计

VirusTotal

可疑

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills