有老哥用这个编译好的qbittorrent吗,出了点问题

[复制链接]
查看: 7399   回复: 9
发表于 2023-7-29 16:02:02 | 显示全部楼层 |阅读模式
服务器一重启,就连不上qbit面板了:L
https://github.com/userdocs/qbittorrent-nox-static
回复

使用道具 举报

 楼主| 发表于 2023-7-29 16:02:43 | 显示全部楼层
你没运行他怎么访问
回复 支持 反对

使用道具 举报

 楼主| 发表于 2023-7-29 16:03:03 | 显示全部楼层
我都是能用docker的就用docker
回复 支持 反对

使用道具 举报

 楼主| 发表于 2023-7-29 16:03:44 | 显示全部楼层
还真是,多谢了。有没有啥重启后自动运行的方法。
回复 支持 反对

使用道具 举报

 楼主| 发表于 2023-7-29 16:04:04 | 显示全部楼层
我来给您上坟咯 发表于 2022-1-10 19:52
还真是,多谢了。有没有啥重启后自动运行的方法。
写个systemctl就好了
回复 支持 反对

使用道具 举报

发表于 2023-7-29 16:05:01 | 显示全部楼层
涉及到知识盲区了,先不搞了,多谢啦
回复 支持 反对

使用道具 举报

 楼主| 发表于 2023-7-29 16:05:50 | 显示全部楼层
安装add-apt-repository命令
sudo apt-get update && sudo apt-get install software-properties-common -y

添加qbittorrent-nox的PPA软件源
# qBittorrent 稳定版
sudo add-apt-repository ppa:qbittorrent-team/qbittorrent-stable

# qBittorrent 测试版
sudo add-apt-repository ppa:qbittorrent-team/qbittorrent-unstable

安装qbittorrent-nox
sudo apt-get update && sudo apt-get install qbittorrent-nox -y

设置开机启动
sudo apt-get install vim -y && vim /etc/systemd/system/qbittorrent-nox.service

[Unit]
Description=qBittorrent-nox
After=network.target
[Service]
User=root
Type=forking
RemainAfterExit=yes
ExecStart=/usr/bin/qbittorrent-nox -d
[Install]
WantedBy=multi-user.target

相关命令
修改qbittorrent-nox.service文件后重新载入
sudo systemctl daemon-reload

启动
sudo systemctl start qbittorrent-nox

停止
sudo systemctl stop qbittorrent-nox

设置开机启动
sudo systemctl enable qbittorrent-nox

查看状态
sudo systemctl status qbittorrent-nox有老哥用这个编译好的qbittorrent吗,出了点问题

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有帐号?立即注册

x
回复 支持 反对

使用道具 举报

 楼主| 发表于 2023-7-29 16:06:19 | 显示全部楼层
搞个自启脚本就好了啊
回复 支持 反对

使用道具 举报

发表于 2023-7-29 16:07:12 | 显示全部楼层
可以写个 systemd 服务自动启动,下面是个例子
  1. cat > /etc/systemd/system/qbit.service << 'EOF'[Unit]Description=qbittorrentAfter=network.target[Service]Type=simpleUser=rootExecStart=/usr/local/bin/qbitExecReload=/bin/kill -HUP $MAINPIDRestart=on-failure[Install]WantedBy=multi-user.targetEOFsystemctl daemon-reloadsystemctl enable qbitsystemctl restart qbitsystemctl status qbit
复制代码
回复 支持 反对

使用道具 举报

 楼主| 发表于 2023-7-29 16:08:01 | 显示全部楼层
多谢多谢:handshake
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则