← 返回
未分类

universal-autostart

Cross-platform auto-start service manager for Windows and macOS. Supports installing, uninstalling, starting, stopping, and monitoring services with automatic restart. Use when you need to set up persistent background services that survive system reboots on Windows (sc/schtasks) or macOS (launchd).
Cross-platform auto-start service manager for Windows and macOS. Supports installing, uninstalling, starting, stopping, and monitoring services with automatic restart. Use when you need to set up persistent background services that survive system reboots on Windows (sc/schtasks) or macOS (launchd).
steam2001
未分类 community v1.0.0 1 版本 100000 Key: 无需
★ 1
Stars
📥 82
下载
💾 0
安装
1
版本
#latest

概述

Universal AutoStart Service Manager v1.1

跨平台的自启动服务管理器,支持 Windows 和 macOS。可以安装、卸载、启动、停止和监控服务,并支持自动重启。

🚀 快速开始

Windows 安装

:: 右键点击 install.bat → 以管理员身份运行
install.bat

macOS 安装

# 终端执行(需要 sudo 权限)
sudo ./install_macos.sh

📋 核心功能

| 功能 | 描述 |

|------|------|

| 跨平台支持 | Windows (sc + schtasks), macOS (launchd) |

| 自动重启 | 服务崩溃时自动重启(可配置最大重启次数) |

| 日志记录 | 实时日志输出,支持文件轮转 |

| 健康检查 | 端口/进程检测,确保服务正常运行 |

| 优雅退出 | 支持 SIGTERM/SIGINT 信号处理 |

| 环境变量 | 支持加载 .env 文件 |

🔧 使用方式

命令行操作

# 安装自启动(不立即运行)
python universal_service.py install [config.json] [--no-check-admin]

# 卸载自启动
python universal_service.py uninstall [config.json] [--no-check-admin]

# 手动启动服务
python universal_service.py start [config.json]

# 停止服务
python universal_service.py stop [config.json]

# 查看服务状态
python universal_service.py status [config.json]

# 直接运行(带自启动)
python universal_service.py [config.json]

双击脚本

  • Windows: install.bat / uninstall.bat
  • macOS: install_macos.sh / uninstall_macos.sh

⚙️ 配置文件

QwenPaw 标准配置 (qwenpaw_service_config.json)

{
  "service_name": "QwenPawService",
  "display_name": "QwenPaw 智能助手服务",
  "program": {
    "type": "python",
    "path": "python",
    "arguments": "-m qwenpaw.cli",
    "working_dir": "C:/Users/Administrator/.copaw/workspaces/default"
  },
  "environment": {
    "load_dotenv": true,
    "variables": {}
  },
  "log": {
    "enabled": true,
    "level": "INFO",
    "dir": ".logs",
    "max_size_mb": 10,
    "backup_count": 5,
    "console": true
  },
  "health_check": {
    "enabled": true,
    "type": "port",
    "port": 8765,
    "interval_seconds": 30,
    "timeout_seconds": 5,
    "max_failures": 3
  },
  "restart": {
    "auto_restart": true,
    "max_restarts": 5,
    "restart_delay": 30
  }
}

通用示例配置 (service_config.example.json)

{
  "service_name": "MyCustomService",
  "display_name": "我的自定义服务",
  "program": {
    "type": "python",
    "path": "python3",
    "arguments": "app.py",
    "working_dir": "/path/to/app"
  },
  "environment": {
    "load_dotenv": false,
    "variables": {
      "NODE_ENV": "production"
    }
  },
  "log": {
    "enabled": true,
    "level": "DEBUG",
    "dir": "./logs"
  },
  "health_check": {
    "enabled": true,
    "type": "port",
    "port": 3000,
    "interval_seconds": 10
  },
  "restart": {
    "auto_restart": true,
    "max_restarts": 3,
    "restart_delay": 60
  }
}

配置选项说明

| 字段 | 类型 | 说明 |

|------|------|------|

| service_name | string | 服务内部名称(唯一标识) |

| display_name | string | 服务显示名称 |

| program.type | string | 程序类型:python / node / binary / shell |

| program.path | string | 可执行程序路径 |

| program.arguments | string | 启动参数 |

| program.working_dir | string | 工作目录 |

| environment.load_dotenv | bool | 是否加载 .env 文件 |

| environment.variables | object | 额外环境变量 |

| log.enabled | bool | 是否启用日志 |

| log.level | string | 日志级别:DEBUG/INFO/WARNING/ERROR |

| log.dir | string | 日志目录 |

| log.max_size_mb | int | 单文件最大大小 (MB) |

| log.backup_count | int | 保留的备份文件数量 |

| log.console | bool | 是否输出到控制台 |

| health_check.enabled | bool | 是否启用健康检查 |

| health_check.type | string | 检查类型:port / process |

| health_check.port | int | 端口号 |

| health_check.interval_seconds | int | 检查间隔 |

| health_check.timeout_seconds | int | 超时时间 |

| health_check.max_failures | int | 最大失败次数 |

| restart.auto_restart | bool | 是否自动重启 |

| restart.max_restarts | int | 最大重启次数 |

| restart.restart_delay | int | 重启延迟 (秒) |

🔍 健康检查

支持两种检查方式:

端口检查 (推荐 Web 服务)

{
  "health_check": {
    "enabled": true,
    "type": "port",
    "port": 8765,
    "interval_seconds": 30,
    "timeout_seconds": 5,
    "max_failures": 3
  }
}

当连续 3 次无法连接到 8765 端口时,触发自动重启。

进程检查

{
  "health_check": {
    "enabled": true,
    "type": "process",
    "interval_seconds": 10
  }
}

定期检查子进程是否存活。

📝 日志管理

默认行为

  • 日志文件:.logs/UniversalService_YYYY-MM-DD.log
  • 日志级别:INFO
  • 文件轮转:单文件 10MB,保留 5 个备份
  • 控制台输出:是

禁用日志

{
  "log": {
    "enabled": false
  }
}

🔄 自动重启机制

防死循环设计

第 1 次崩溃: 立即重启
第 2 次崩溃: 立即重启
第 3 次崩溃: 等待 5 秒后重启
...
累计 5 次崩溃: 停止重启,记录严重错误

可通过配置调整:

{
  "restart": {
    "max_restarts": 5,
    "restart_delay": 30
  }
}

🛠️ 高级功能

环境变量加载

{
  "environment": {
    "load_dotenv": true,
    "variables": {
      "APP_MODE": "production",
      "LOG_LEVEL": "DEBUG"
    }
  }
}

会优先使用 variables 中的值,覆盖 .env 文件的设置。

多程序类型支持

// Python 程序
{
  "program": {
    "type": "python",
    "path": "python3",
    "arguments": "app.py"
  }
}

// Node.js 程序
{
  "program": {
    "type": "node",
    "path": "node",
    "arguments": "server.js"
  }
}

// 可执行文件
{
  "program": {
    "type": "binary",
    "path": "/usr/local/bin/myapp",
    "arguments": "--config config.yaml"
  }
}

// Shell 脚本
{
  "program": {
    "type": "shell",
    "path": "bash",
    "arguments": "scripts/start.sh"
  }
}

🐛 故障排查

问题 1: 权限不足

Windows:

右键 → 以管理员身份运行

macOS:

sudo ./install_macos.sh

问题 2: 服务未启动

检查日志:

type .logs\UniversalService_*.log    # Windows
tail -f .logs/UniversalService_*.log  # macOS

问题 3: 健康检查频繁重启

降低检查频率或增加失败阈值:

{
  "health_check": {
    "interval_seconds": 60,
    "max_failures": 5
  }
}

问题 4: Python 找不到

指定完整路径:

{
  "program": {
    "path": "C:\\Python39\\python.exe"
  }
}

📦 文件结构

universal-autostart/
├── universal_service.py       # 核心服务管理器
├── install.bat                # Windows 安装脚本
├── uninstall.bat              # Windows 卸载脚本
├── install_macos.sh           # macOS 安装脚本
├── uninstall_macos.sh         # macOS 卸载脚本
├── qwenpaw_service_config.json # QwenPaw 标准配置
├── service_config.example.json # 通用配置示例
└── README.md                  # 用户文档

🔄 版本历史

v1.1 (当前版本)

  • ✅ 新增 macOS launchd 支持
  • ✅ 改进权限检测方法
  • ✅ 优化日志轮转机制
  • ✅ 增加健康检查功能
  • ✅ 修复 admin_check() 子进程问题

v1.0

  • ✅ Windows sc/schtasks 支持
  • ✅ 基础自动重启功能
  • ✅ 日志记录
  • ✅ 环境变量支持

📄 许可证

MIT License


项目地址: https://gitee.com/steam2001/universal-autostart

技能商店: skillhub.club

版本历史

共 1 个版本

  • v1.0.0 Initial release 当前
    2026-04-20 14:39 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

suspicious
查看报告

🔗 相关推荐

it-ops-security

MoltGuard - Security & Antivirus & Guardrails

thomaslwang
MoltGuard — OpenClaw 安全守卫,由 OpenGuardrails 提供。安装后可防止您和您的用户受到提示注入、数据泄露及恶意行为的侵害。
★ 116 📥 31,113
education

信息科技备课助手

user_8add3940
信息科技备课助手(Node.js版)。支持湘教版和湘科版《信息科技》教材。用户要求制作某节课的任何一份资料(教案/课件/任务单)时,自动生成全套四件套(PPT课件+教学设计+学生任务单+互动HTML工具),除非该资料之前已生成。用户首次使用
★ 0 📥 188
it-ops-security

1password

steipete
设置和使用 1Password CLI (op)。适用于:安装 CLI、启用桌面应用集成、登录(单/多账户)、通过 op 读取/注入/运行密钥。
★ 53 📥 32,163