扫描二维码关注官方公众号
返回列表 发布新帖

[盒子/seedbox] Flexget 无法发送种子给 Deluge . 求助

3864 10
发表于 2013-2-6 16:19:28 | 查看全部 阅读模式

来吧兄弟,一起玩一起讨论!

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

×
我的 config.yml 内容 :

  1. tasks:
  2.   CHD.auto:
  3.     rss: [url]http://chdbits.org/torrentrss.php?rows=10&iuplder=1&linktype=dl&passkey=4aa2fxxxbb94406bcd8xxxxxx58feb4d[/url]
  4.     if:
  5.       - "'HDJ' in title": accept
  6.     content_size:
  7.       min: 1024
  8.       max: 409600
  9.     free_space:
  10.       path: /home
  11.       space: 500
  12.     download: /home/box123/rss/
  13.     deluge:
  14.       host: localhost
  15.       port: 58846
  16.       user: localclient
  17.       pass: bad50f216213dc1fxxxxxxxx5fdf21b5067c4d7e
  18.   CHD.hand:
  19.     rss: [url]http://chdbits.org/torrentrss.php?myrss=1&linktype=dl&uid=119990&passkey=4aa2fxxxbb94406bcd8xxxxxx58feb4d[/url]
  20.     accept_all: yes
  21.     free_space:
  22.       path: /home
  23.       space: 500
  24.     download: /home/box123/rss/
  25.     deluge:
  26.       host: localhost
  27.       port: 58846
  28.       user: localclient
  29.       pass: bad50f216213dc1fxxxxxxxx5fdf21b5067c4d7e

复制代码






然后就是 Flexget --test 的输出内容 :  


  1. root@Pan1:/# flexget --test
  2. 2013-02-06 16:15 INFO     manager                       Test mode, creating a copy from database ...
  3. 2013-02-06 16:15 INFO     manager                       Test database created
  4. 2013-02-06 16:15 VERBOSE  manager                       Not running database cleanup on manual run. It will be run on next --cron run.
  5. 2013-02-06 16:15 INFO     deluge                        Using deluge 1.2 api
  6. 2013-02-06 16:15 VERBOSE  details       CHD.hand        Task didn't produce any entries. This is likely due to a mis-configured or non-functional input.
  7. 2013-02-06 16:15 VERBOSE  details       CHD.hand        Summary - Accepted: 0 (Rejected: 0 Undecided: 0 Failed: 0)
  8. 2013-02-06 16:15 INFO     deluge        CHD.hand        Connecting to daemon at localhost:58846..
  9. 2013-02-06 16:15 INFO     deluge        CHD.hand        Connected to daemon at 127.0.0.1:58846..
  10. 2013-02-06 16:15 ERROR    deluge        CHD.hand        RPCError Message Received!\n--------------------------------------------------------------------------------\nRPCRequest: daemon.login(localclient, bad50f216213dc1fcee93df25fdf21b5067c4d7e)\n--------------------------------------------------------------------------------\n  File "/usr/lib/pymodules/python2.7/deluge/core/rpcserver.py", line 259, in dispatch\n    ret = component.get("AuthManager").authorize(*args, **kwargs)\n  File "/usr/lib/pymodules/python2.7/deluge/core/authmanager.py", line 93, in authorize\n    raise BadLoginError("Password does not match")\n\nBadLoginError: Password does not match\n--------------------------------------------------------------------------------
  11. 2013-02-06 16:15 INFO     deluge        CHD.hand        Connection lost to daemon at localhost:58846 reason: Connection was closed cleanly.
  12. 2013-02-06 16:15 CRITICAL deluge        CHD.hand        Could not connect to deluge daemon
  13. 2013-02-06 16:15 INFO     task          CHD.hand        Aborting task (plugin: deluge)
  14. 2013-02-06 16:15 VERBOSE  rss           CHD.auto        Not processing entries from last run.
  15. 2013-02-06 16:15 VERBOSE  backlog       CHD.auto        Added 29 entries from backlog
  16. 2013-02-06 16:15 VERBOSE  details       CHD.auto        Produced 30 entries.
  17. 2013-02-06 16:15 VERBOSE  task          CHD.auto        ACCEPTED: `HDJ Inbound Troubles Ep15-Ep16 HDTV 720p x264 2Audio-CHDTV[SeaTiger]` by if plugin because matched requirement: 'HDJ' in title
  18. 2013-02-06 16:15 VERBOSE  task          CHD.auto        ACCEPTED: `HDJ The Day Of Days Ep12 20130205 HDTV 720p x264 2Audio-CHDTV[Judge]` by if plugin because matched requirement: 'HDJ' in title
  19. 2013-02-06 16:15 INFO     download      CHD.auto        Would download: HDJ Inbound Troubles Ep15-Ep16 HDTV 720p x264 2Audio-CHDTV[SeaTiger]
  20. 2013-02-06 16:15 INFO     download      CHD.auto        Would download: HDJ The Day Of Days Ep12 20130205 HDTV 720p x264 2Audio-CHDTV[Judge]
  21. 2013-02-06 16:15 VERBOSE  details       CHD.auto        Summary - Accepted: 2 (Rejected: 0 Undecided: 28 Failed: 0)
  22. 2013-02-06 16:15 INFO     content_size  CHD.auto        Plugin is partially disabled with --test and --learn because size information may not be available
  23. 2013-02-06 16:15 INFO     deluge        CHD.auto        Connecting to daemon at localhost:58846..
  24. 2013-02-06 16:15 INFO     download      CHD.auto        Would write `HDJ Inbound Troubles Ep15-Ep16 HDTV 720p x264 2Audio-CHDTV[SeaTiger]` to `/home/box123/rss/`
  25. 2013-02-06 16:15 INFO     download      CHD.auto        Would write `HDJ The Day Of Days Ep12 20130205 HDTV 720p x264 2Audio-CHDTV[Judge]` to `/home/box123/rss/`
  26. 2013-02-06 16:15 WARNING  deluge                        Connection to daemon at localhost:58846 failed: An error occurred while connecting: [Failure instance: Traceback (failure with no frames): <class 'twisted.internet.error.ConnectionLost'>: Connection to the other side was lost in a non-clean fashion: Connection lost.\n].
  27. 2013-02-06 16:15 INFO     manager                       Removed test database

复制代码



求租 怎么 修复啊 ??

昨天出外面之前 一直都是不能用的 , 然后回来就给我添加一大堆种子 ,搞得我马上冰人了 .好在回来马上就补救了..

然后现在也是不行  .  自动获取RSS的这个 一时可以 一时不可以  .

然后那个获取下载框的就一开始是可以的.然后 莫名其妙的就一直不能用了..


评论10

genabLv.9 发表于 2013-2-6 18:15:07 | 查看全部
解决方案:

1、你把种子下到某个目录,然后让deluge监视这个目录

2、你指定flexget将种子url发给deluge,让deluge自己去下载种子

3、也就是你现在的方法。这个有一缺点,常会出错,呵!
机遇常在,资源难有!
2013,为梦为奋斗!
回复 点赞

使用道具 举报

catoLv.4 发表于 2013-2-6 21:07:58 | 查看全部
http://flexget.com/wiki/Plugins/deluge
按照官网的说明,应该是只要一句deluge: yes就搞定。那些option都可选的,不添加也行,添加了更强大。

好盒子不是独服才能做到。
TvT.ro*1
回复 点赞

使用道具 举报

p0wer@2楼主 发表于 2013-2-6 23:44:48 | 查看全部
cato 发表于 2013-2-6 21:07
http://flexget.com/wiki/Plugins/deluge
按照官网的说明,应该是只要一句deluge: yes就搞定。那些option都 ...

是不是把
  1. deluge:
  2.       host: localhost
  3.       port: 58846
  4.       user: localclient
  5.       pass: bad50f216213dc1fxxxxxxxx5fdf21b5067c4d7e
复制代码
上面这个  替换成

deluge: yes  这样就可以了??
回复 点赞

使用道具 举报

p0wer@2楼主 发表于 2013-2-6 23:47:43 | 查看全部
genab 发表于 2013-2-6 18:15
解决方案:

1、你把种子下到某个目录,然后让deluge监视这个目录

你说的两种方法 怎么样去实现 , 哪一种比较好啊??

我现在的方法是属于什么呢?

我也有在Deluge 的 "Autoadd .torrent files from:" 这里

添加了/home/box123/rss/ 这个路径的 .这个是不是属于监视 ?
回复 点赞

使用道具 举报

catoLv.4 发表于 2013-2-7 07:44:31 | 查看全部
本帖最后由 cato 于 2013-2-7 07:45 编辑
p0wer 发表于 2013-2-6 23:44
是不是把上面这个  替换成

deluge: yes  这样就可以了??

应该是的,注意yes前面有个空格。

好盒子不是独服才能做到。
TvT.ro*1
回复 点赞

使用道具 举报

bigbigchen 发表于 2013-2-7 14:56:01 | 查看全部
我也经常出问题,经常大量删种的话好像会出问题,发现重启服务器最管用,几分钟的事情,又可以熬很久了。
回复 点赞

使用道具 举报

mmax 发表于 2013-2-7 15:28:10 | 查看全部
去掉
deluge:
      host: localhost
      port: 58846
      user: localclient
      pass: bad50f216213dc1fxxxxxxxx5fdf21b5067c4d7e

上deluge webgui 设置deluge监控目录 为 /home/box123/rss/

如果要检查你现在的错误..可以cat /root/.config/deluge/auth
看中间那一段是否为bad50f216213dc1fxxxxxxxx5fdf21b5067c4d7e

BTW:你的password还是暴露了...log那一段没隐藏{:7_706:}
回复 点赞

使用道具 举报

p0wer@2楼主 发表于 2013-2-8 19:49:16 | 查看全部
mmax 发表于 2013-2-7 15:28
去掉
deluge:
      host: localhost

露就露把 .我都重装系统了 ..再去试试 .先
回复 点赞

使用道具 举报

spring@2 发表于 2013-2-10 20:25:59 | 查看全部
    if:
      - "'HDJ' in title": accept
    content_size:
      min: 1024
      max: 409600

把这几个删除,  这个是标题中 有  HDJ,和限制了大小
回复 点赞

使用道具 举报

p0wer@2楼主 发表于 2013-2-10 22:48:11 | 查看全部
spring 发表于 2013-2-10 20:25
if:
      - "'HDJ' in title": accept
    content_size:

这是我自己设置的呢.
hi  详情 回复
发表于 2013-2-16 16:38
hi  详情 回复
发表于 2013-2-16 16:38
hi  详情 回复
发表于 2013-2-16 16:37
hi  详情 回复
发表于 2013-2-16 16:37
继续  详情 回复
发表于 2013-2-16 16:37
强力.!!!!!  详情 回复
发表于 2013-2-16 16:37
回复 点赞

使用道具 举报

回复

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

本版积分规则

淘宝小店

邀请码

VIP会员

微信客服

公众号

微信群

投诉/建议联系

support@gebi1.cn

未经授权禁止转载,复制和建立镜像,
如有违反,追究法律责任
  • 关注公众号
  • 添加微信客服
Copyright © 2001-2024 隔壁网 版权所有 All Rights Reserved. 粤ICP备14056481号-1
关灯 在本版发帖
扫一扫添加微信客服
返回顶部
快速回复 返回顶部 返回列表