前提
open-webui 是通过pip 安装;
系统是Ubuntu 24.04;
添加systemd开启自启动文件
在/etc/systemd/system目录下新建openwebui.service文件夹;
[Unit]
Description=Open-webui Service
Before=network.target
[Service]
Type=simple
ExecStart=/usr/local/bin/open-webui serve
User=root
Group=root
Restart=always
RestartSec=3
EnvironmentFile=/PATH/open-webui/open-webui.env
[Install]
WantedBy=multi-user.target
重置 Systemd 配置,并启动开启自启
# 重置 Systemd 配置
sudo systemctl daemon-reload
# 设置开机自启动
sudo systemctl enable openwebui.service
open-webui 日志查看
journalctl -u openwebui -f
微信扫描下方的二维码阅读本文
本作品采用知识共享署名-相同方式共享 4.0 国际许可协议进行许可。
暂无评论
要发表评论,您必须先 登录