Hansel

Members
  • Posts

    28
  • Joined

  • Last visited

Converted

  • Gender
    Undisclosed

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

Hansel's Achievements

Noob

Noob (1/14)

0

Reputation

  1. Anyone managed to get this going? Been fiddling around and it's to do with the SCGI ports, but I can't quite work it out. Flood seems to want an rtorrent.sock file but that doesn't appear to exist...
  2. Hi all, I have this up and running in Docker in Ubuntu. Everything seems fine, the VPN is working, Flood is working if I enable that and rutorrent is working otherwise. If I have rutorrent enabled on 9080 I can add it as a Download Client in Sonarr and all is fine. However, I really want to use Flood and I'm not sure how to get Sonarr/Radarr to connect in that case... just hoping someone can help me out? Thanks!
  3. I've created a topic here in case you want to chime in at any point: https://forum.synology.com/enu/viewtopic.php?f=258&t=129572&p=477157#p477157
  4. Its weird as that Unifi container I posted above does work with the apparmor command, so I'm not too sure what the difference is
  5. Hi, To be honest I probably wouldn't worry about it for now, as even if you fix that error you'll still be stuck with the error I'm currently running into with apparmor. Not sure it's possible to get this one running unless someone smarter than us comes along and sorts it out You might have to use the Deluge one instead, which does work but I really want Flood running as it doesn't look like a Windows 3.1 app like Deluge and stock rtorrent
  6. Thanks binhex. Had a crack using this as a template: https://medium.com/@ctindel/running-unifi-video-controller-in-docker-on-synology-ab8c09f7ff97#.sxozu9hne But it still doesn't seem to want to work. I tried two different docker run commands: 1. docker run --restart always --name binhex-arch-rtorrentvpn2 -h binhex-arch-rtorrentvpn2 -p 3000:3000 -p 49160:49160 -p 49170:49170 -p 35000:5000 -p 38118:8118 -p 39080:9080 -p 39443:9443 -d -v /volume1/docker/rtorrentvpn:/config -v /volume1/docker/rtorrentvpn/data:/data -e PHP_TZ=Australia/Melbourne -e VPN_REMOTE=nl.privateinternetaccess.com -e VPN_PORT=1198 -e DEBUG=true -e NAME_SERVERS=8.8.8.8,8.8.4.4 -e LAN_NETWORK=192.168.1.0/24 -e ENABLE_FLOOD=no -e ENABLE_PRIVOXY=no -e STRONG_CERTS=no -e VPN_PROV=pia -e VPN_DEVICE_TYPE=tun -e VPN_PROTOCOL=udp -e VPN_PASS=xxx -e VPN_USER=xxx -e VPN_ENABLED=yes -e PGID=0 -e PUID=0 --cap-add=SYS_ADMIN --cap-add=DAC_READ_SEARCH --cap-add=NET_BIND_SERVICE --cap-add=SYS_PTRACE --cap-add=SETUID --cap-add=SETGID --security-opt apparmor:unconfined binhex/arch-rtorrentvpn:latest This just gave a bunch of errors that seemed like it didn't have the right permissions (iptables modules out of date etc) 2. docker run --restart always --name binhex-arch-rtorrentvpn2 -h binhex-arch-rtorrentvpn2 -p 3000:3000 -p 49160:49160 -p 49170:49170 -p 35000:5000 -p 38118:8118 -p 39080:9080 -p 39443:9443 -d -v /volume1/docker/rtorrentvpn:/config -v /volume1/docker/rtorrentvpn/data:/data -e PHP_TZ=Australia/Melbourne -e VPN_REMOTE=nl.privateinternetaccess.com -e VPN_PORT=1198 -e DEBUG=true -e NAME_SERVERS=8.8.8.8,8.8.4.4 -e LAN_NETWORK=192.168.1.0/24 -e ENABLE_FLOOD=no -e ENABLE_PRIVOXY=no -e STRONG_CERTS=no -e VPN_PROV=pia -e VPN_DEVICE_TYPE=tun -e VPN_PROTOCOL=udp -e VPN_PASS=xxx -e VPN_USER=xxx -e VPN_ENABLED=yes -e PGID=0 -e PUID=0 --privileged=true --security-opt apparmor:unconfined binhex/arch-rtorrentvpn:latest This just gives the original error (nginx). Not sure if there's a combo of those I can try, or other --cap-add options I need in the first one to give it full permissions? EDIT: I also tried it with --cap-add=ALL which, as far as I'm aware, should just give it access to pretty much everything, but that still gave me the nginx error. Perhaps it's --security-opt apparmor:unconfined that isn't working.
  7. Ok, definitely do it through the GUI. For localtime just use PHP_TZ as the variable and then UTC as the value. Also enable the "Execute Container using High Privilege" option in the container GUI. Your LAN should be your local lan. Try 192.168.1.0/24 (assuming your LAN goes from 192.168.1.1 to 192.168.1.254). Once you've set that up, then follow the instructions to set up a scheduled task on the synology as described in that post above, that's what I did. Reboot after you've set it up then give it a try.
  8. Are you on a Synology? If so don't use the command line, use the GUI. Also are you sure 172.17.0.0/16 is your internal lan? Also it's possible your VPN isn't supported, I've no idea though to be honest.
  9. Is it expected to see this over and over (could just be as I have debug on)?
  10. That actually worked for me, but I'm getting one more error that I'm not sure how to solve for. For reference, this doesn't happen on the Deluge container which works perfectly. Anyone know how I can solve for this: /usr/bin/nginx: error while loading shared libraries: libdl.so.2: cannot open shared object file: Permission denied If I disable apparmor it does work, so I guess I need to edit a profile maybe? Any help appreciated. Here's the revelant log section:
  11. Just for reference, Deluge appears to be fine so it's rtorrent specific. I'll post over there.
  12. Ah crap. I am, but I use both so I just follow the support and forget where I am Let me see if Deluge works, that'll narrow it down a bit.
  13. Hmm. It just shows up in the Log of the container (and the supervisor.log file). Everything will "boot" up, establish a VPN connection etc, then right at the end it'll give this error and crash out (I assume).
  14. Anyone know how I can solve for this: /usr/bin/nginx: error while loading shared libraries: libdl.so.2: cannot open shared object file: Permission denied If I disable apparmor it does work, so I guess I need to edit a profile maybe? Any help appreciated