centos.uvwcloud.com 一键部署包下载

本页提供两套独立的一键部署包, 都内置 MariaDB 11.4 + Redis + Nginx + Temurin JRE 21, 零 yum 依赖
目录: ▸ rbox (北京整合医学合规系统) ▸ hbox (大健康会务通)

📦 rbox (北京整合医学合规系统)

RuoYi 单体版 · MD5 18d9a0f2b020555ac3f517fdf446d2cc · 263 MB
内含 MariaDB 11.4 + Redis + Nginx + Temurin JRE 21 + ruoyi-admin.jar + Vue3 前端 dist, 解压即跑, 适合单机单应用场景。
⬇ 下载 rbox-scripts.zip (263 MB) 部署文档

环境要求

项目要求
操作系统CentOS 7.x (其它 Linux x86_64 应也能跑, 已测试过 CentOS 7.9)
用户root
磁盘≥ 3 GB 可用空间
端口80, 3306, 6379, 8082 须空闲
网络安装时无需联网
解压工具无 unzip 时可用 python 自带的 zipfile

安装步骤

# 1. 解压
unzip rbox-scripts.zip -d /opt/
# 干净容器无 unzip? 用 python:
python -c "import zipfile; zipfile.ZipFile('rbox-scripts.zip').extractall('/opt')"

# 2. 加执行位
chmod +x /opt/rbox/rbox

# 3. 一键启动 (首次约 40-50 秒全自动)
cd /opt/rbox
./rbox start
首启自动完成: 一键启动 MariaDB / Redis / Nginx / Java 后端 + 前端,初始化数据库与字典数据,无需任何人工介入。

验证

# 状态
./rbox status

# HTTP 测试
curl -s -o /dev/null -w "%{http_code}\n" http://127.0.0.1/
curl -s -o /dev/null -w "%{http_code}\n" http://127.0.0.1:8082/
curl -s http://127.0.0.1:8082/captchaImage

默认账号

服务用户名密码
RuoYi 后台admin / manager01 / leader01admin123
MariaDB rootrootRuoyi@123456
MariaDB 应用库hegui (库 guoju0808)Ruoyi@123456
Redis无密码用户pass4Redis

常用命令

./rbox start      # 启动
./rbox stop       # 停止
./rbox restart    # 重启
./rbox status     # 状态

📦 hbox (大健康会务通)

基于 RuoYi-Cloud 微服务架构 · MD5 0b1cd1dcbd33f91c3516737b6e753d75 · 664 MB
大健康会务通系统一键部署包, 内含 MariaDB 11.4 + Redis + Nginx + Nacos 2.3.2 + Temurin JRE 21 + 3 个微服务 jar (Gateway/Auth/System) + H5 移动端, 解压即跑, 适合需要服务注册/配置中心 + 移动端访问的场景。
⬇ 下载 hbox-scripts.zip (664 MB) 部署文档

环境要求

项目要求
操作系统CentOS 7.x (其它 Linux x86_64 应也能跑, 已测试过 CentOS 7.9)
用户root
磁盘≥ 4 GB 可用空间
端口80, 3306, 6379, 8080, 8848, 9205, 9213 须空闲
网络安装时无需联网
解压工具无 unzip 时可用 python 自带的 zipfile

安装步骤

# 1. 解压
unzip hbox-scripts.zip -d /opt/
# 干净容器无 unzip? 用 python:
python -c "import zipfile; zipfile.ZipFile('hbox-scripts.zip').extractall('/opt')"

# 2. 加执行位 (Python zipfile 不保留 mode, 必须 chmod)
chmod +x /opt/hbox/hbox /opt/hbox/bin/lib/*.sh
chmod +x /opt/hbox/run/mysql/bin/* /opt/hbox/run/mysql/mysqld
chmod +x /opt/hbox/run/redis/redis-server /opt/hbox/run/redis/redis-cli
chmod +x /opt/hbox/run/nginx/sbin/nginx /opt/hbox/jre/bin/java

# 3. 一键安装 (首次约 2-3 分钟, 全自动)
cd /opt/hbox
./hbox install
首启自动完成: 初始化 MariaDB + 建库 + 导数据 (schema.sql + init-data.sql) + 启动 Redis + Nacos 2.3.2 + 渲染并导入 5 个 nacos 配置 + 启动 3 个微服务 (Gateway/Auth/System) + Nginx 反代 + H5 托管, 无需任何人工介入。

验证

# 状态
./hbox status

# HTTP 测试
curl -s -o /dev/null -w "%{http_code}\n" http://127.0.0.1/                      # Nginx → H5
curl -s http://127.0.0.1:8080/actuator/health                                   # Gateway UP
curl -s -o /dev/null -w "%{http_code}\n" http://127.0.0.1:8848/nacos/         # Nacos
curl -s -o /dev/null -w "%{http_code}\n" http://127.0.0.1:9213/captchaImage   # Auth

默认账号

服务用户名密码
MariaDB rootrootRuoyi@123456
应用数据库risingdoctor (库 risingdoctor)Ruoyi@123456
Redis无密码用户Qljl1rh_
Nacos 控制台nacosnacos
RuoYi 后台adminadmin123

常用命令

./hbox start      # 启动
./hbox stop       # 停止
./hbox restart    # 重启
./hbox status     # 状态
./hbox install    # 首次安装 (含初始化)

📊 版本对比

项目rboxhbox
架构RuoYi 单体 (ruoyi-admin.jar)RuoYi-Cloud 微服务 (Gateway/Auth/System)
注册/配置中心无 (本地 application.yml)Nacos 2.3.2
前端Vue3 dist (web/)H5 移动端 uni-app (www/v2/) + Nginx 反代
数据库MariaDB 11.4.13 + RedisMariaDB 11.4.13 + Redis
JDK/JRETemurin JRE 21 (61MB)Temurin JRE 21 (61MB)
主端口80828080 (Gateway) + 8848 (Nacos)
包大小263 MB664 MB
首启耗时约 40-50 秒约 2-3 分钟
问题反馈: 详见 INSTALL.md / INSTALL_HBOX.md