d2dyno 9 Posted January 1, 2019 Share Posted January 1, 2019 Unfortunately my ISP doesn't support IPv6 yet, so I am unable to try this fix. Any of the maintainers know what changed that would cause absolutely no traffic happening with over 5k torrents seeding? Quote Link to post
xthursdayx 36 Posted January 2, 2019 Share Posted January 2, 2019 (edited) I've run into an issue with permissions in my ruTorrent AutoWatch folder. I have a script on my laptop that uploads all .torrent files in a specific directory to the ruTorrent AutoWatch folder on my server. However, I noticed that ruTorrent was not adding these torrents and upon closer examination I noticed that the extension of each file was being changed after upload, from .torrent to .torrent.fail. My thought is that this must be a result of the file permissions and ownership. The uploaded files have 644 permissions and are owned by root:root, so I'm assuming that this is the issue and the files cannot be executed by ruTorrent (with the default user:group nobody:users). So, I was wondering if someone can give me advice for adding a script or something to automatically chmod all files added to this specific directory to 755 and chown to nobody:users? I looked into doing this and saw someone mention using an incron job, but I don't really know how to do that. Any help would be much appreciated. Thanks! Edited January 2, 2019 by zandrsn updated Quote Link to post
xthursdayx 36 Posted January 4, 2019 Share Posted January 4, 2019 On 1/2/2019 at 11:29 AM, zandrsn said: I've run into an issue with permissions in my ruTorrent AutoWatch folder. In case anyone runs into the same issue, I solved this problem with inotifywait by creating a User Script that runs at the startup of the array. Here is the script: #!/bin/sh if [ -x /tmp/watchy ]; then rm -rf /tmp/watchy fi while inotifywait -e create -o /tmp/watchy --format %w%f /mnt/cache/Downloads/watched do found=$( tail -n1 /tmp/watchy | grep -E '.torrent$' ) && chown nobody:users $found && chmod 0755 $found done Quote Link to post
crabbyapple 0 Posted January 19, 2019 Share Posted January 19, 2019 Hi, Probably a noob question but... So I am using the linuxserver/rutorrent image and the rutorrent web UI works great. However, is there any way to pull up the CLI interface for rTorrent? Sometimes I end up needing to run specific commands through the CLI interface. I haven't figured out how to do that with this docker image. Thanks! Quote Link to post
trurl 1519 Posted January 20, 2019 Share Posted January 20, 2019 5 hours ago, crabbyapple said: Hi, Probably a noob question but... So I am using the linuxserver/rutorrent image and the rutorrent web UI works great. However, is there any way to pull up the CLI interface for rTorrent? Sometimes I end up needing to run specific commands through the CLI interface. I haven't figured out how to do that with this docker image. Thanks! I don't use this but you can get to the command line inside any docker by clicking on its icon in the webUI and selecting >_Console Quote Link to post
d2dyno 9 Posted January 20, 2019 Share Posted January 20, 2019 You can also get in from SSH with 'docker exec -it rutorrent /bin/bash'. From there, you can access the rtorrent instance with 'screen -r'. To leave detach from screen while leaving rtorrent running, do 'CTRL+a+d' Quote Link to post
deusxanime 16 Posted January 20, 2019 Share Posted January 20, 2019 12 hours ago, d2dyno said: You can also get in from SSH with 'docker exec -it rutorrent /bin/bash'. From there, you can access the rtorrent instance with 'screen -r'. To leave detach from screen while leaving rtorrent running, do 'CTRL+a+d' Is that right? Swear the couple times I've done it in the past it was tmux. Or did it get changed at some point? Quote Link to post
crabbyapple 0 Posted January 20, 2019 Share Posted January 20, 2019 1 minute ago, deusxanime said: Is that right? Swear the couple times I've done it in the past it was tmux. Or did it get changed at some point? Yup, its screen. Just worked for me Quote Link to post
deusxanime 16 Posted January 20, 2019 Share Posted January 20, 2019 1 hour ago, crabbyapple said: Yup, its screen. Just worked for me Ah I realized what it was... I use binhex's rtorrent-vpn container, which uses tmux instead. Didn't realize I was in lsio's thread! Whoops. Quote Link to post
trurl 1519 Posted January 20, 2019 Share Posted January 20, 2019 1 hour ago, deusxanime said: Didn't realize I was in lsio's thread! You can always be sure you go to the right support thread by simply clicking on the docker icon in the Unraid webUI and selecting Support. You can also get to a support thread from the Apps page by clicking on the support link for a particular docker or plugin. Quote Link to post
deusxanime 16 Posted January 21, 2019 Share Posted January 21, 2019 22 hours ago, trurl said: You can always be sure you go to the right support thread by simply clicking on the docker icon in the Unraid webUI and selecting Support. You can also get to a support thread from the Apps page by clicking on the support link for a particular docker or plugin. Well I'm just subscribed to a bunch of threads and saw the discussion. Wasn't looking for any specific support myself. Quote Link to post
urbanracer34 2 Posted February 16, 2019 Share Posted February 16, 2019 Hi. I can't seem to modify any of my settings in my Rutorrent instance, with none of them persisting after container restart or update. I tried to modify the downloads directory from "/downloads/incoming" to JUST "/downloads/" and to keep the port as one specific port and not a random one. Whenever I restart the container, the modified settings NEVER take effect. Is this a problem for anyone else? Thanks, urbanracer34 Quote Link to post
HAMANY 4 Posted February 17, 2019 Share Posted February 17, 2019 7 hours ago, urbanracer34 said: Hi. I can't seem to modify any of my settings in my Rutorrent instance, with none of them persisting after container restart or update. I tried to modify the downloads directory from "/downloads/incoming" to JUST "/downloads/" and to keep the port as one specific port and not a random one. Whenever I restart the container, the modified settings NEVER take effect. Is this a problem for anyone else? Thanks, urbanracer34 Yes, it happens to me also. The only workaround I found is to edit the configuration file (rtorrent.rc) located in (\\tower\appdata\rutorrent\rtorrent) Quote Link to post
memphisto 3 Posted March 15, 2019 Share Posted March 15, 2019 Last week (i think after rebase to alpine 3.9) i noticed randomly high cpu utilization - its fixed by restarting docker. Is this a problem for anyone else? Quote Link to post
xD3CrypTionz 1 Posted March 17, 2019 Share Posted March 17, 2019 (edited) Does anyone know why when I load in a torrent and do force recheck its stuck on " Queued " status and does not move? Just trying to seed things here. I already have the file I'm wanting to seed. *EDIT* Found I had to change the download directory to /mnt/cache/(Yoursharehere) for it to work. How ever when I now to to force recheck a torrent it rechecks it but it doesn't actually count the data despite it checking. Edited March 17, 2019 by xD3CrypTionz Quote Link to post
andreidelait 7 Posted March 19, 2019 Share Posted March 19, 2019 (edited) On 3/15/2019 at 9:30 PM, memphisto said: Last week (i think after rebase to alpine 3.9) i noticed randomly high cpu utilization - its fixed by restarting docker. Is this a problem for anyone else? I still have the same problem. Rstarting the container solves the problem temporarily. After a ahile it starts hitting the CPU again. Edited March 19, 2019 by andreidelait Quote Link to post
memphisto 3 Posted March 19, 2019 Share Posted March 19, 2019 5 minutes ago, andreidelait said: I still have the same problem. Rstarting the container solves the problem temporarily. After a ahile it starts hitting the CPU again. Yop... 😞 Downgrade rutorrent. Use repository: linuxserver/rutorrent:1fcd6618-ls15 1 Quote Link to post
Hogwind 3 Posted March 19, 2019 Share Posted March 19, 2019 8 hours ago, memphisto said: Yop... 😞 Downgrade rutorrent. Use repository: linuxserver/rutorrent:1fcd6618-ls15 Thanks, works like a charm. :) Quote Link to post
msilkjr 0 Posted March 21, 2019 Share Posted March 21, 2019 Hey, all it seems that Rutorrent is not auto updating my RSS feed. If I manually update it. it is fine. however, it's not doing it every 30 or 60 min. any help would be great. Quote Link to post
xD3CrypTionz 1 Posted March 21, 2019 Share Posted March 21, 2019 So in reply to my previous comment here are my settings of the docker and whenever I add a torrent it gets stuck on queuing. Quote Link to post
msilkjr 0 Posted March 22, 2019 Share Posted March 22, 2019 23 hours ago, xD3CrypTionz said: So in reply to my previous comment here are my settings of the docker and whenever I add a torrent it gets stuck on queuing. I had this issue when selecting a ratio, such as ratio0, ratio1, etc. Do not select a ratio, leave it set to no ratio. That may help, also I would check what your upload and downloads slots are set to. Quote Link to post
xD3CrypTionz 1 Posted March 25, 2019 Share Posted March 25, 2019 On 3/22/2019 at 11:37 PM, msilkjr said: I had this issue when selecting a ratio, such as ratio0, ratio1, etc. Do not select a ratio, leave it set to no ratio. That may help, also I would check what your upload and downloads slots are set to. Doing this has not fixed the issue. Im sure its something to do with permissions but I cannot figure out what went wrong. Quote Link to post
urbanracer34 2 Posted April 7, 2019 Share Posted April 7, 2019 (edited) I'm getting an error in rutorrent (the web gui) in the log since the latest update to the container image. [07.04.2019 12:10:09] WebUI started. [07.04.2019 12:10:09] cloudflare: Cant load cfscrape, python [04/07/2019 12:10:10] Python Not Found Can you help me? Thanks, urbanracer34 Edited April 7, 2019 by urbanracer34 Quote Link to post
ugp 3 Posted April 8, 2019 Share Posted April 8, 2019 6 hours ago, urbanracer34 said: I'm getting an error in rutorrent (the web gui) in the log since the latest update to the container image. [07.04.2019 12:10:09] WebUI started. [07.04.2019 12:10:09] cloudflare: Cant load cfscrape, python [04/07/2019 12:10:10] Python Not Found Can you help me? Thanks, urbanracer34 I am also getting the same thing. Quote Link to post
bobokun 3 Posted April 8, 2019 Share Posted April 8, 2019 13 hours ago, ugp said: I am also getting the same thing. Yeah I'm having the same error. Disabling the cloudflare plugin fixes it Quote Link to post
669 posts in this topic Last Reply
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.