Ubuntu添加自定义Service

Ubuntu添加自定义Service

  1. 创建配置文件

    vim /etc/systemd/system/your-service.service
  2. 写入如下内容

    [Unit]
    Description=My Custom Service
    After=network.target
    [Service]
    Type=simple
    ExecStart=/usr/bin/python3 /path/to/your/script.py
    Restart=on-failure
    [Install]
    WantedBy=multi-user.target
  3. reload守护进程

    systemctl daemon-reload
  4. start自定义进程

    systemctl start your-service
  5. 开机自启动

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注