跳至主要內容

二进制部署

大约 2 分钟

二进制部署

单节点部署时,可以使用 gorse-in-one 这个独立的二进制文件。

注意

对于多节点场景,不推荐二进制部署。

前提条件

Gorse 依赖于以下软件:

  • 缓存存储数据库, MySQLPostgreSQLMongoDBRedis之一。
  • 数据存储数据库, MySQLPostgreSQLClickHouseMongoDB之一。

依赖软件的最低版本如下:

软件最小版本兼容产品
Redis5.0
MySQL5.7MariaDB >= 10.2
PostgresSQL10.0
ClickHouse21.10
MongoDB4.0

运行gorse-in-one

  1. 从 GitHub Release 下载 gorse-in-one。
# For amd64 CPU:
wget -O gorse.zip https://github.com/gorse-io/gorse/releases/latest/download/gorse_linux_amd64.zip

# For arm64 CPU:
wget -O gorse.zip https://github.com/gorse-io/gorse/releases/latest/download/gorse_linux_arm64.zip
  1. 安装 gorse-in-one
sudo unzip gorse.zip -d /usr/local/bin
  1. 基于配置文件模板open in new window 创建配置文件 config.toml

  2. 运行gorse-in-one

gorse-in-one -c config.toml

Gorse-in-one 的参数

Gorse-in-one的命令行参数如下:

标志默认值描述
-c-c,--config配置文件路径
--debug调试日志模式
-h--help显示帮助信息
--log-path日志文件路径
--log-max-size日志文件的最大兆字节数
--log-max-age保留旧日志文件的最大天数
--log-max-backups保留的旧日志文件的最大数量
--master-cache-pathmaster_cache.data主节点缓存路径
--playgroundplayground模式
-v--version显示版本信息
--worker-cache-pathworker_cache.data工作节点缓存路径
--worker-jobs1工作节点工作线程数

配置 Systemd (Linux)

  1. 为日志文件和缓存文件创建目录。
sudo mkdir -p /etc/gorse/
sudo mkdir -p /var/log/gorse/
sudo mkdir -p /var/lib/gorse/
  1. 将配置文件复制到/etc/gorse
sudo mv config.toml /etc/gorse/
  1. /etc/systemd/system/gorse.service创建 systemd 配置文件:
[Unit]
Description=Gorse, an open source recommender system service written in Go.
After=network.target

[Service]
Type=simple
Restart=always
ExecStart=/usr/local/bin/gorse-in-one -c /etc/gorse/config.toml \
    --log-path /var/log/gorse/gorse.log \
    --cache-path /var/lib/gorse/gorse.data

[Install]
WantedBy=multi-user.target
  1. 然后重新加载systemd:
sudo systemctl daemon-reload
  1. 在系统启动的同时启动 gorse-in-one:
sudo systemctl enable gorse
  1. 立即启动 gorse-in-one:
sudo systemctl start gorse
  1. 检查 gorse-in-one 的运行状态和日志:
systemctl status gorse

配置服务 (Windows)

注意

在 Windows 上创建 Gorse 服务需要安装NSSMopen in new window

  1. 为日志文件和缓存文件创建目录。
New-Item -Type Directory -Path $env:ProgramFiles/Gorse/log
New-Item -Type Directory -Path $env:ProgramFiles/Gorse/data
  1. 将配置文件复制到C:/Program Files/Gorse/bin
Move-Item config.toml -Destination $env:ProgramFiles/Gorse/bin
  1. 使用NSSMopen in new window创建服务。
nssm install Gorse $env:ProgramFiles\Gorse\bin\gorse-in-one.exe
nssm set Gorse AppParameters -c bin\config.toml --cache-path data\gorse.data
nssm set Gorse AppDirectory $env:ProgramFiles\Gorse
nssm set Gorse AppStdout $env:ProgramFiles\Gorse\log\gorse.log
nssm set Gorse AppStderr $env:ProgramFiles\Gorse\log\gorse.log
nssm start Gorse