通过以下改动修复嵌入生成过程中的事件循环相关问题: - 在 EmbeddingStore._get_embedding 中,改为同步创建-使用-销毁的新事件循环模式,彻底避免嵌套事件循环问题 - 调整批量嵌入 _get_embeddings_batch_threaded,确保每个线程使用独立、短生命周期的事件循环 - 新增 force_new 参数,LLM 请求嵌入任务时强制创建新的客户端实例,减少跨循环对象复用 - 在 OpenAI 客户端的 embedding 调用处补充详细日志,方便排查网络连接异常 - get_embedding() 每次都重建 LLMRequest,降低实例在多个事件循环中穿梭的概率 此次改动虽然以同步风格“硬掰”异步接口,但对现有接口零破坏,确保了向量数据库及相关知识检索功能的稳定性。(还有就是把的脚本文件夹移回来了)
557 lines
19 KiB
Bash
557 lines
19 KiB
Bash
#!/bin/bash
|
||
|
||
# MaiCore & NapCat Adapter一键安装脚本 by Cookie_987
|
||
# 适用于Arch/Ubuntu 24.10/Debian 12/CentOS 9
|
||
# 请小心使用任何一键脚本!
|
||
|
||
INSTALLER_VERSION="0.0.5-refactor"
|
||
LANG=C.UTF-8
|
||
|
||
# 如无法访问GitHub请修改此处镜像地址
|
||
GITHUB_REPO="https://ghfast.top/https://github.com"
|
||
|
||
# 颜色输出
|
||
GREEN="\e[32m"
|
||
RED="\e[31m"
|
||
RESET="\e[0m"
|
||
|
||
# 需要的基本软件包
|
||
|
||
declare -A REQUIRED_PACKAGES=(
|
||
["common"]="git sudo python3 curl gnupg"
|
||
["debian"]="python3-venv python3-pip build-essential"
|
||
["ubuntu"]="python3-venv python3-pip build-essential"
|
||
["centos"]="epel-release python3-pip python3-devel gcc gcc-c++ make"
|
||
["arch"]="python-virtualenv python-pip base-devel"
|
||
)
|
||
|
||
# 默认项目目录
|
||
DEFAULT_INSTALL_DIR="/opt/maicore"
|
||
|
||
# 服务名称
|
||
SERVICE_NAME="maicore"
|
||
SERVICE_NAME_WEB="maicore-web"
|
||
SERVICE_NAME_NBADAPTER="maibot-napcat-adapter"
|
||
|
||
IS_INSTALL_NAPCAT=false
|
||
IS_INSTALL_DEPENDENCIES=false
|
||
|
||
# 检查是否已安装
|
||
check_installed() {
|
||
[[ -f /etc/systemd/system/${SERVICE_NAME}.service ]]
|
||
}
|
||
|
||
# 加载安装信息
|
||
load_install_info() {
|
||
if [[ -f /etc/maicore_install.conf ]]; then
|
||
source /etc/maicore_install.conf
|
||
else
|
||
INSTALL_DIR="$DEFAULT_INSTALL_DIR"
|
||
BRANCH="refactor"
|
||
fi
|
||
}
|
||
|
||
# 显示管理菜单
|
||
show_menu() {
|
||
while true; do
|
||
choice=$(whiptail --title "MaiCore管理菜单" --menu "请选择要执行的操作:" 15 60 7 \
|
||
"1" "启动MaiCore" \
|
||
"2" "停止MaiCore" \
|
||
"3" "重启MaiCore" \
|
||
"4" "启动NapCat Adapter" \
|
||
"5" "停止NapCat Adapter" \
|
||
"6" "重启NapCat Adapter" \
|
||
"7" "拉取最新MaiCore仓库" \
|
||
"8" "切换分支" \
|
||
"9" "退出" 3>&1 1>&2 2>&3)
|
||
|
||
[[ $? -ne 0 ]] && exit 0
|
||
|
||
case "$choice" in
|
||
1)
|
||
systemctl start ${SERVICE_NAME}
|
||
whiptail --msgbox "✅MaiCore已启动" 10 60
|
||
;;
|
||
2)
|
||
systemctl stop ${SERVICE_NAME}
|
||
whiptail --msgbox "🛑MaiCore已停止" 10 60
|
||
;;
|
||
3)
|
||
systemctl restart ${SERVICE_NAME}
|
||
whiptail --msgbox "🔄MaiCore已重启" 10 60
|
||
;;
|
||
4)
|
||
systemctl start ${SERVICE_NAME_NBADAPTER}
|
||
whiptail --msgbox "✅NapCat Adapter已启动" 10 60
|
||
;;
|
||
5)
|
||
systemctl stop ${SERVICE_NAME_NBADAPTER}
|
||
whiptail --msgbox "🛑NapCat Adapter已停止" 10 60
|
||
;;
|
||
6)
|
||
systemctl restart ${SERVICE_NAME_NBADAPTER}
|
||
whiptail --msgbox "🔄NapCat Adapter已重启" 10 60
|
||
;;
|
||
7)
|
||
update_dependencies
|
||
;;
|
||
8)
|
||
switch_branch
|
||
;;
|
||
9)
|
||
exit 0
|
||
;;
|
||
*)
|
||
whiptail --msgbox "无效选项!" 10 60
|
||
;;
|
||
esac
|
||
done
|
||
}
|
||
|
||
# 更新依赖
|
||
update_dependencies() {
|
||
whiptail --title "⚠" --msgbox "更新后请阅读教程" 10 60
|
||
systemctl stop ${SERVICE_NAME}
|
||
cd "${INSTALL_DIR}/MaiBot" || {
|
||
whiptail --msgbox "🚫 无法进入安装目录!" 10 60
|
||
return 1
|
||
}
|
||
if ! git pull origin "${BRANCH}"; then
|
||
whiptail --msgbox "🚫 代码更新失败!" 10 60
|
||
return 1
|
||
fi
|
||
source "${INSTALL_DIR}/venv/bin/activate"
|
||
if ! pip install -r requirements.txt; then
|
||
whiptail --msgbox "🚫 依赖安装失败!" 10 60
|
||
deactivate
|
||
return 1
|
||
fi
|
||
deactivate
|
||
whiptail --msgbox "✅ 已停止服务并拉取最新仓库提交" 10 60
|
||
}
|
||
|
||
# 切换分支
|
||
switch_branch() {
|
||
new_branch=$(whiptail --inputbox "请输入要切换的分支名称:" 10 60 "${BRANCH}" 3>&1 1>&2 2>&3)
|
||
[[ -z "$new_branch" ]] && {
|
||
whiptail --msgbox "🚫 分支名称不能为空!" 10 60
|
||
return 1
|
||
}
|
||
|
||
cd "${INSTALL_DIR}/MaiBot" || {
|
||
whiptail --msgbox "🚫 无法进入安装目录!" 10 60
|
||
return 1
|
||
}
|
||
|
||
if ! git ls-remote --exit-code --heads origin "${new_branch}" >/dev/null 2>&1; then
|
||
whiptail --msgbox "🚫 分支 ${new_branch} 不存在!" 10 60
|
||
return 1
|
||
fi
|
||
|
||
if ! git checkout "${new_branch}"; then
|
||
whiptail --msgbox "🚫 分支切换失败!" 10 60
|
||
return 1
|
||
fi
|
||
|
||
if ! git pull origin "${new_branch}"; then
|
||
whiptail --msgbox "🚫 代码拉取失败!" 10 60
|
||
return 1
|
||
fi
|
||
systemctl stop ${SERVICE_NAME}
|
||
source "${INSTALL_DIR}/venv/bin/activate"
|
||
pip install -r requirements.txt
|
||
deactivate
|
||
|
||
sed -i "s/^BRANCH=.*/BRANCH=${new_branch}/" /etc/maicore_install.conf
|
||
BRANCH="${new_branch}"
|
||
check_eula
|
||
whiptail --msgbox "✅ 已停止服务并切换到分支 ${new_branch} !" 10 60
|
||
}
|
||
|
||
check_eula() {
|
||
# 首先计算当前EULA的MD5值
|
||
current_md5=$(md5sum "${INSTALL_DIR}/MaiBot/EULA.md" | awk '{print $1}')
|
||
|
||
# 首先计算当前隐私条款文件的哈希值
|
||
current_md5_privacy=$(md5sum "${INSTALL_DIR}/MaiBot/PRIVACY.md" | awk '{print $1}')
|
||
|
||
# 如果当前的md5值为空,则直接返回
|
||
if [[ -z $current_md5 || -z $current_md5_privacy ]]; then
|
||
whiptail --msgbox "🚫 未找到使用协议\n 请检查PRIVACY.md和EULA.md是否存在" 10 60
|
||
fi
|
||
|
||
# 检查eula.confirmed文件是否存在
|
||
if [[ -f ${INSTALL_DIR}/MaiBot/eula.confirmed ]]; then
|
||
# 如果存在则检查其中包含的md5与current_md5是否一致
|
||
confirmed_md5=$(cat ${INSTALL_DIR}/MaiBot/eula.confirmed)
|
||
else
|
||
confirmed_md5=""
|
||
fi
|
||
|
||
# 检查privacy.confirmed文件是否存在
|
||
if [[ -f ${INSTALL_DIR}/MaiBot/privacy.confirmed ]]; then
|
||
# 如果存在则检查其中包含的md5与current_md5是否一致
|
||
confirmed_md5_privacy=$(cat ${INSTALL_DIR}/MaiBot/privacy.confirmed)
|
||
else
|
||
confirmed_md5_privacy=""
|
||
fi
|
||
|
||
# 如果EULA或隐私条款有更新,提示用户重新确认
|
||
if [[ $current_md5 != $confirmed_md5 || $current_md5_privacy != $confirmed_md5_privacy ]]; then
|
||
whiptail --title "📜 使用协议更新" --yesno "检测到MaiCore EULA或隐私条款已更新。\nhttps://github.com/MaiM-with-u/MaiBot/blob/refactor/EULA.md\nhttps://github.com/MaiM-with-u/MaiBot/blob/refactor/PRIVACY.md\n\n您是否同意上述协议? \n\n " 12 70
|
||
if [[ $? -eq 0 ]]; then
|
||
echo -n $current_md5 > ${INSTALL_DIR}/MaiBot/eula.confirmed
|
||
echo -n $current_md5_privacy > ${INSTALL_DIR}/MaiBot/privacy.confirmed
|
||
else
|
||
exit 1
|
||
fi
|
||
fi
|
||
|
||
}
|
||
|
||
# ----------- 主安装流程 -----------
|
||
run_installation() {
|
||
# 1/6: 检测是否安装 whiptail
|
||
if ! command -v whiptail &>/dev/null; then
|
||
echo -e "${RED}[1/6] whiptail 未安装,正在安装...${RESET}"
|
||
|
||
if command -v apt-get &>/dev/null; then
|
||
apt-get update && apt-get install -y whiptail
|
||
elif command -v pacman &>/dev/null; then
|
||
pacman -Syu --noconfirm whiptail
|
||
elif command -v yum &>/dev/null; then
|
||
yum install -y whiptail
|
||
else
|
||
echo -e "${RED}[Error] 无受支持的包管理器,无法安装 whiptail!${RESET}"
|
||
exit 1
|
||
fi
|
||
fi
|
||
|
||
whiptail --title "ℹ️ 提示" --msgbox "如果您没有特殊需求,请优先使用docker方式部署。" 10 60
|
||
|
||
# 协议确认
|
||
if ! (whiptail --title "ℹ️ [1/6] 使用协议" --yes-button "我同意" --no-button "我拒绝" --yesno "使用MaiCore及此脚本前请先阅读EULA协议及隐私协议\nhttps://github.com/MaiM-with-u/MaiBot/blob/refactor/EULA.md\nhttps://github.com/MaiM-with-u/MaiBot/blob/refactor/PRIVACY.md\n\n您是否同意上述协议?" 12 70); then
|
||
exit 1
|
||
fi
|
||
|
||
# 欢迎信息
|
||
whiptail --title "[2/6] 欢迎使用MaiCore一键安装脚本 by Cookie987" --msgbox "检测到您未安装MaiCore,将自动进入安装流程,安装完成后再次运行此脚本即可进入管理菜单。\n\n项目处于活跃开发阶段,代码可能随时更改\n文档未完善,有问题可以提交 Issue 或者 Discussion\nQQ机器人存在被限制风险,请自行了解,谨慎使用\n由于持续迭代,可能存在一些已知或未知的bug\n由于开发中,可能消耗较多token\n\n本脚本可能更新不及时,如遇到bug请优先尝试手动部署以确定是否为脚本问题" 17 60
|
||
|
||
# 系统检查
|
||
check_system() {
|
||
if [[ "$(id -u)" -ne 0 ]]; then
|
||
whiptail --title "🚫 权限不足" --msgbox "请使用 root 用户运行此脚本!\n执行方式: sudo bash $0" 10 60
|
||
exit 1
|
||
fi
|
||
|
||
if [[ -f /etc/os-release ]]; then
|
||
source /etc/os-release
|
||
if [[ "$ID" == "debian" && "$VERSION_ID" == "12" ]]; then
|
||
return
|
||
elif [[ "$ID" == "ubuntu" && "$VERSION_ID" == "24.10" ]]; then
|
||
return
|
||
elif [[ "$ID" == "centos" && "$VERSION_ID" == "9" ]]; then
|
||
return
|
||
elif [[ "$ID" == "arch" ]]; then
|
||
whiptail --title "⚠️ 兼容性警告" --msgbox "NapCat无可用的 Arch Linux 官方安装方法,将无法自动安装NapCat。\n\n您可尝试在AUR中搜索相关包。" 10 60
|
||
return
|
||
else
|
||
whiptail --title "🚫 不支持的系统" --msgbox "此脚本仅支持 Arch/Debian 12 (Bookworm)/Ubuntu 24.10 (Oracular Oriole)/CentOS9!\n当前系统: $PRETTY_NAME\n安装已终止。" 10 60
|
||
exit 1
|
||
fi
|
||
else
|
||
whiptail --title "⚠️ 无法检测系统" --msgbox "无法识别系统版本,安装已终止。" 10 60
|
||
exit 1
|
||
fi
|
||
}
|
||
check_system
|
||
|
||
# 设置包管理器
|
||
case "$ID" in
|
||
debian|ubuntu)
|
||
PKG_MANAGER="apt"
|
||
;;
|
||
centos)
|
||
PKG_MANAGER="yum"
|
||
;;
|
||
arch)
|
||
# 添加arch包管理器
|
||
PKG_MANAGER="pacman"
|
||
;;
|
||
esac
|
||
|
||
# 检查NapCat
|
||
check_napcat() {
|
||
if command -v napcat &>/dev/null; then
|
||
NAPCAT_INSTALLED=true
|
||
else
|
||
NAPCAT_INSTALLED=false
|
||
fi
|
||
}
|
||
check_napcat
|
||
|
||
# 安装必要软件包
|
||
install_packages() {
|
||
missing_packages=()
|
||
# 检查 common 及当前系统专属依赖
|
||
for package in ${REQUIRED_PACKAGES["common"]} ${REQUIRED_PACKAGES["$ID"]}; do
|
||
case "$PKG_MANAGER" in
|
||
apt)
|
||
dpkg -s "$package" &>/dev/null || missing_packages+=("$package")
|
||
;;
|
||
yum)
|
||
rpm -q "$package" &>/dev/null || missing_packages+=("$package")
|
||
;;
|
||
pacman)
|
||
pacman -Qi "$package" &>/dev/null || missing_packages+=("$package")
|
||
;;
|
||
esac
|
||
done
|
||
|
||
if [[ ${#missing_packages[@]} -gt 0 ]]; then
|
||
whiptail --title "📦 [3/6] 依赖检查" --yesno "以下软件包缺失:\n${missing_packages[*]}\n\n是否自动安装?" 10 60
|
||
if [[ $? -eq 0 ]]; then
|
||
IS_INSTALL_DEPENDENCIES=true
|
||
else
|
||
whiptail --title "⚠️ 注意" --yesno "未安装某些依赖,可能影响运行!\n是否继续?" 10 60 || exit 1
|
||
fi
|
||
fi
|
||
}
|
||
install_packages
|
||
|
||
# 安装NapCat
|
||
install_napcat() {
|
||
[[ $NAPCAT_INSTALLED == true ]] && return
|
||
whiptail --title "📦 [3/6] 软件包检查" --yesno "检测到未安装NapCat,是否安装?\n如果您想使用远程NapCat,请跳过此步。" 10 60 && {
|
||
IS_INSTALL_NAPCAT=true
|
||
}
|
||
}
|
||
|
||
# 仅在非Arch系统上安装NapCat
|
||
[[ "$ID" != "arch" ]] && install_napcat
|
||
|
||
# Python版本检查
|
||
check_python() {
|
||
PYTHON_VERSION=$(python3 -c 'import sys; print(f"{sys.version_info.major}.{sys.version_info.minor}")')
|
||
if ! python3 -c "import sys; exit(0) if sys.version_info >= (3,10) else exit(1)"; then
|
||
whiptail --title "⚠️ [4/6] Python 版本过低" --msgbox "检测到 Python 版本为 $PYTHON_VERSION,需要 3.10 或以上!\n请升级 Python 后重新运行本脚本。" 10 60
|
||
exit 1
|
||
fi
|
||
}
|
||
|
||
# 如果没安装python则不检查python版本
|
||
if command -v python3 &>/dev/null; then
|
||
check_python
|
||
fi
|
||
|
||
|
||
# 选择分支
|
||
choose_branch() {
|
||
BRANCH=$(whiptail --title "🔀 选择分支" --radiolist "请选择要安装的分支:" 15 60 4 \
|
||
"main" "稳定版本(推荐)" ON \
|
||
"dev" "开发版(不知道什么意思就别选)" OFF \
|
||
"classical" "经典版(0.6.0以前的版本)" OFF \
|
||
"custom" "自定义分支" OFF 3>&1 1>&2 2>&3)
|
||
RETVAL=$?
|
||
if [ $RETVAL -ne 0 ]; then
|
||
whiptail --msgbox "🚫 操作取消!" 10 60
|
||
exit 1
|
||
fi
|
||
|
||
if [[ "$BRANCH" == "custom" ]]; then
|
||
BRANCH=$(whiptail --title "🔀 自定义分支" --inputbox "请输入自定义分支名称:" 10 60 "refactor" 3>&1 1>&2 2>&3)
|
||
RETVAL=$?
|
||
if [ $RETVAL -ne 0 ]; then
|
||
whiptail --msgbox "🚫 输入取消!" 10 60
|
||
exit 1
|
||
fi
|
||
if [[ -z "$BRANCH" ]]; then
|
||
whiptail --msgbox "🚫 分支名称不能为空!" 10 60
|
||
exit 1
|
||
fi
|
||
fi
|
||
}
|
||
choose_branch
|
||
|
||
# 选择安装路径
|
||
choose_install_dir() {
|
||
INSTALL_DIR=$(whiptail --title "📂 [6/6] 选择安装路径" --inputbox "请输入MaiCore的安装目录:" 10 60 "$DEFAULT_INSTALL_DIR" 3>&1 1>&2 2>&3)
|
||
[[ -z "$INSTALL_DIR" ]] && {
|
||
whiptail --title "⚠️ 取消输入" --yesno "未输入安装路径,是否退出安装?" 10 60 && exit 1
|
||
INSTALL_DIR="$DEFAULT_INSTALL_DIR"
|
||
}
|
||
}
|
||
choose_install_dir
|
||
|
||
# 确认安装
|
||
confirm_install() {
|
||
local confirm_msg="请确认以下更改:\n\n"
|
||
confirm_msg+="📂 安装MaiCore、NapCat Adapter到: $INSTALL_DIR\n"
|
||
confirm_msg+="🔀 分支: $BRANCH\n"
|
||
[[ $IS_INSTALL_DEPENDENCIES == true ]] && confirm_msg+="📦 安装依赖:${missing_packages[@]}\n"
|
||
[[ $IS_INSTALL_NAPCAT == true ]] && confirm_msg+="📦 安装额外组件:\n"
|
||
|
||
[[ $IS_INSTALL_NAPCAT == true ]] && confirm_msg+=" - NapCat\n"
|
||
confirm_msg+="\n注意:本脚本默认使用ghfast.top为GitHub进行加速,如不想使用请手动修改脚本开头的GITHUB_REPO变量。"
|
||
|
||
whiptail --title "🔧 安装确认" --yesno "$confirm_msg" 20 60 || exit 1
|
||
}
|
||
confirm_install
|
||
|
||
# 开始安装
|
||
echo -e "${GREEN}安装${missing_packages[@]}...${RESET}"
|
||
|
||
if [[ $IS_INSTALL_DEPENDENCIES == true ]]; then
|
||
case "$PKG_MANAGER" in
|
||
apt)
|
||
apt update && apt install -y "${missing_packages[@]}"
|
||
;;
|
||
yum)
|
||
yum install -y "${missing_packages[@]}" --nobest
|
||
;;
|
||
pacman)
|
||
pacman -S --noconfirm "${missing_packages[@]}"
|
||
;;
|
||
esac
|
||
fi
|
||
|
||
if [[ $IS_INSTALL_NAPCAT == true ]]; then
|
||
echo -e "${GREEN}安装 NapCat...${RESET}"
|
||
curl -o napcat.sh https://nclatest.znin.net/NapNeko/NapCat-Installer/main/script/install.sh && bash napcat.sh --cli y --docker n
|
||
fi
|
||
|
||
echo -e "${GREEN}创建安装目录...${RESET}"
|
||
mkdir -p "$INSTALL_DIR"
|
||
cd "$INSTALL_DIR" || exit 1
|
||
|
||
echo -e "${GREEN}设置Python虚拟环境...${RESET}"
|
||
python3 -m venv venv
|
||
source venv/bin/activate
|
||
|
||
echo -e "${GREEN}克隆MaiCore仓库...${RESET}"
|
||
git clone -b "$BRANCH" "$GITHUB_REPO/MaiM-with-u/MaiBot" MaiBot || {
|
||
echo -e "${RED}克隆MaiCore仓库失败!${RESET}"
|
||
exit 1
|
||
}
|
||
|
||
echo -e "${GREEN}克隆 maim_message 包仓库...${RESET}"
|
||
git clone $GITHUB_REPO/MaiM-with-u/maim_message.git || {
|
||
echo -e "${RED}克隆 maim_message 包仓库失败!${RESET}"
|
||
exit 1
|
||
}
|
||
|
||
echo -e "${GREEN}克隆 nonebot-plugin-maibot-adapters 仓库...${RESET}"
|
||
git clone $GITHUB_REPO/MaiM-with-u/MaiBot-Napcat-Adapter.git || {
|
||
echo -e "${RED}克隆 MaiBot-Napcat-Adapter.git 仓库失败!${RESET}"
|
||
exit 1
|
||
}
|
||
|
||
|
||
echo -e "${GREEN}安装Python依赖...${RESET}"
|
||
pip install -r MaiBot/requirements.txt
|
||
cd MaiBot
|
||
pip install uv
|
||
uv pip install -i https://mirrors.aliyun.com/pypi/simple -r requirements.txt
|
||
cd ..
|
||
|
||
echo -e "${GREEN}安装maim_message依赖...${RESET}"
|
||
cd maim_message
|
||
uv pip install -i https://mirrors.aliyun.com/pypi/simple -e .
|
||
cd ..
|
||
|
||
echo -e "${GREEN}部署MaiBot Napcat Adapter...${RESET}"
|
||
cd MaiBot-Napcat-Adapter
|
||
uv pip install -i https://mirrors.aliyun.com/pypi/simple -r requirements.txt
|
||
cd ..
|
||
|
||
echo -e "${GREEN}同意协议...${RESET}"
|
||
|
||
# 首先计算当前EULA的MD5值
|
||
current_md5=$(md5sum "MaiBot/EULA.md" | awk '{print $1}')
|
||
|
||
# 首先计算当前隐私条款文件的哈希值
|
||
current_md5_privacy=$(md5sum "MaiBot/PRIVACY.md" | awk '{print $1}')
|
||
|
||
echo -n $current_md5 > MaiBot/eula.confirmed
|
||
echo -n $current_md5_privacy > MaiBot/privacy.confirmed
|
||
|
||
echo -e "${GREEN}创建系统服务...${RESET}"
|
||
cat > /etc/systemd/system/${SERVICE_NAME}.service <<EOF
|
||
[Unit]
|
||
Description=MaiCore
|
||
After=network.target ${SERVICE_NAME_NBADAPTER}.service
|
||
|
||
[Service]
|
||
Type=simple
|
||
WorkingDirectory=${INSTALL_DIR}/MaiBot
|
||
ExecStart=$INSTALL_DIR/venv/bin/python3 bot.py
|
||
Restart=always
|
||
RestartSec=10s
|
||
|
||
[Install]
|
||
WantedBy=multi-user.target
|
||
EOF
|
||
|
||
# cat > /etc/systemd/system/${SERVICE_NAME_WEB}.service <<EOF
|
||
# [Unit]
|
||
# Description=MaiCore WebUI
|
||
# After=network.target ${SERVICE_NAME}.service
|
||
|
||
# [Service]
|
||
# Type=simple
|
||
# WorkingDirectory=${INSTALL_DIR}/MaiBot
|
||
# ExecStart=$INSTALL_DIR/venv/bin/python3 webui.py
|
||
# Restart=always
|
||
# RestartSec=10s
|
||
|
||
# [Install]
|
||
# WantedBy=multi-user.target
|
||
# EOF
|
||
|
||
cat > /etc/systemd/system/${SERVICE_NAME_NBADAPTER}.service <<EOF
|
||
[Unit]
|
||
Description=MaiBot Napcat Adapter
|
||
After=network.target mongod.service ${SERVICE_NAME}.service
|
||
|
||
[Service]
|
||
Type=simple
|
||
WorkingDirectory=${INSTALL_DIR}/MaiBot-Napcat-Adapter
|
||
ExecStart=$INSTALL_DIR/venv/bin/python3 main.py
|
||
Restart=always
|
||
RestartSec=10s
|
||
|
||
[Install]
|
||
WantedBy=multi-user.target
|
||
EOF
|
||
|
||
systemctl daemon-reload
|
||
|
||
# 保存安装信息
|
||
echo "INSTALLER_VERSION=${INSTALLER_VERSION}" > /etc/maicore_install.conf
|
||
echo "INSTALL_DIR=${INSTALL_DIR}" >> /etc/maicore_install.conf
|
||
echo "BRANCH=${BRANCH}" >> /etc/maicore_install.conf
|
||
|
||
whiptail --title "🎉 安装完成" --msgbox "MaiCore安装完成!\n已创建系统服务:${SERVICE_NAME}、${SERVICE_NAME_WEB}、${SERVICE_NAME_NBADAPTER}\n\n使用以下命令管理服务:\n启动服务:systemctl start ${SERVICE_NAME}\n查看状态:systemctl status ${SERVICE_NAME}" 14 60
|
||
}
|
||
|
||
# ----------- 主执行流程 -----------
|
||
# 检查root权限
|
||
[[ $(id -u) -ne 0 ]] && {
|
||
echo -e "${RED}请使用root用户运行此脚本!${RESET}"
|
||
exit 1
|
||
}
|
||
|
||
# 如果已安装显示菜单,并检查协议是否更新
|
||
if check_installed; then
|
||
load_install_info
|
||
check_eula
|
||
show_menu
|
||
else
|
||
run_installation
|
||
# 安装完成后询问是否启动
|
||
if whiptail --title "安装完成" --yesno "是否立即启动MaiCore服务?" 10 60; then
|
||
systemctl start ${SERVICE_NAME}
|
||
whiptail --msgbox "✅ 服务已启动!\n使用 systemctl status ${SERVICE_NAME} 查看状态" 10 60
|
||
fi
|
||
fi
|