V2EX = way to explore
V2EX 是一个关于分享和探索的地方
Sign Up Now
For Existing Member  Sign In
OpenWrt 是一个专门面向嵌入式设备的 Linux 发行版。你可以将 OpenWrt 支持的型号的嵌入式设备,比如各种路由器上的系统,换成一个有更多可能性可以折腾的 Linux 系统。
OpenWrt 官方网站
AllenHua
V2EX  ›  OpenWrt

lean openwrt 里的 qbittorrent-nox 服务 如何监控其是否在运行并在发现服务挂掉时重启?

  •  
  •   AllenHua · Jan 10, 2021 · 841 views
    This topic created in 1938 days ago, the information mentioned may be changed or developed.
    1. openwrt 没有 systemd
    2. 编写了一个 shell 脚本 配合 crond 服务一直没有成功
    #!/bin/sh
    while true
    do
    COUNT=$(ps |grep qbittorrent |grep -v grep |wc -l)
    echo "current running qbittorrent process count: "$COUNT
    if [ $COUNT -eq 0 ]
    then
    
    su - transmission <<EOF
    /usr/bin/qbittorrent-nox --profile=/mnt/ThreeTB2/qbit_backup
    echo "qbittorrent-nox process has been restarted!"
    EOF
    
    else
    echo "qbittorrent-nox already started!"
    fi
    sleep 10
    done
    kill $!
    

    以上文件放在 /mnt/ThreeTB2/qbittorrent.sh 已经添加 可执行权限

    cron 脚本是 */3 * * * * /bin/ash /mnt/ThreeTB2/qbittorrent.sh > /tmp/crontab-qbittorrent-sh.log

    测试的时候 用的 每隔三分钟 执行一次

    但是调试了一段时间 发现并不靠谱…… 希望大神前来指点

    1 replies    2021-01-10 12:16:25 +08:00
    AllenHua
        1
    AllenHua  
    OP
       Jan 10, 2021
    重新编写了一个 `/mnt/ThreeTB2/check_qbittorrent.sh`

    ```bash
    #!/bin/bash
    # author: xxx
    # time: 2021-01-10
    # program: check if qbittorrent-nox is running, if not, start it

    function check_qbittorrent(){
    qbittorrentCount=`ps |grep qbittorrent-nox |grep -v grep |wc -l`
    echo "current running qbittorrent process count: "$qbittorrentCount
    if [ 0 == $qbittorrentCount ]; then
    /usr/bin/qbittorrent-nox --profile=/mnt/ThreeTB2/qbit_backup
    fi
    }

    check_qbittorrent
    ```

    cron 表达式 `*/3 * * * * /bin/ash /mnt/ThreeTB2/check_qbittorrent.sh > /tmp/crontab-qbittorrent-sh.log`

    似乎是 ok 了 发现了问题所在,刚刚 使用 ps 过滤程序时 应该过滤 qbittorrent-nox 才对 所以刚刚程序中的 COUNT 会出现问题 过滤 qbittorrent-nox 就好
    About   ·   Help   ·   Advertise   ·   Blog   ·   API   ·   FAQ   ·   Solana   ·   969 Online   Highest 6679   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 29ms · UTC 23:40 · PVG 07:40 · LAX 16:40 · JFK 19:40
    ♥ Do have faith in what you're doing.