mirror of
https://github.com/whyour/qinglong.git
synced 2025-11-22 16:38:33 +08:00
* Initial plan * Add non-root user guide and improve error messages Co-authored-by: whyour <22700758+whyour@users.noreply.github.com> * Add PM2_HOME configuration to fix non-root user permission errors Co-authored-by: whyour <22700758+whyour@users.noreply.github.com> * Fix PM2 socket error by using /tmp for PM2_HOME instead of mounted volume Co-authored-by: whyour <22700758+whyour@users.noreply.github.com> * Document symlink permission limitation for non-root users Co-authored-by: whyour <22700758+whyour@users.noreply.github.com> * Clarify that scheduled tasks auto-adapt to use full paths when symlinks unavailable Co-authored-by: whyour <22700758+whyour@users.noreply.github.com> * Add error handling for symlink creation to prevent worker crashes Co-authored-by: whyour <22700758+whyour@users.noreply.github.com> * Add practical solutions for non-root users to use ql and task commands Co-authored-by: whyour <22700758+whyour@users.noreply.github.com> * Modify linkCommand to create symlinks in ~/bin for non-root users Co-authored-by: whyour <22700758+whyour@users.noreply.github.com> * 修复链接 task 命令 --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: whyour <22700758+whyour@users.noreply.github.com> Co-authored-by: whyour <imwhyour@gmail.com>
51 lines
1.1 KiB
Bash
Executable File
51 lines
1.1 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
# Add ~/bin to PATH for non-root users
|
|
export PATH="$HOME/bin:$PATH"
|
|
|
|
dir_shell=/ql/shell
|
|
. $dir_shell/share.sh
|
|
|
|
export_ql_envs() {
|
|
# Export BACK_PORT from QlPort for backend server to use
|
|
export BACK_PORT="${ql_port}"
|
|
# Export GRPC_PORT from QlGrpcPort for gRPC server to use
|
|
export GRPC_PORT="${ql_grpc_port}"
|
|
}
|
|
|
|
log_with_style() {
|
|
local level="$1"
|
|
local message="$2"
|
|
local timestamp=$(date '+%Y-%m-%d %H:%M:%S')
|
|
|
|
printf "\n[%s] [%7s] %s\n" "${timestamp}" "${level}" "${message}"
|
|
}
|
|
|
|
log_with_style "INFO" "🚀 1. 检测配置文件..."
|
|
load_ql_envs
|
|
export_ql_envs
|
|
. $dir_shell/env.sh
|
|
import_config "$@"
|
|
fix_config
|
|
|
|
pm2 l &>/dev/null
|
|
|
|
log_with_style "INFO" "⚙️ 2. 启动 pm2 服务..."
|
|
reload_pm2
|
|
|
|
if [[ $AutoStartBot == true ]]; then
|
|
log_with_style "INFO" "🤖 3. 启动 bot..."
|
|
nohup ql bot >$dir_log/bot.log 2>&1 &
|
|
fi
|
|
|
|
if [[ $EnableExtraShell == true ]]; then
|
|
log_with_style "INFO" "🛠️ 4. 执行自定义脚本..."
|
|
nohup ql extra >$dir_log/extra.log 2>&1 &
|
|
fi
|
|
|
|
log_with_style "SUCCESS" "🎉 容器启动成功!"
|
|
|
|
crond -f >/dev/null
|
|
|
|
exec "$@"
|