Skip to content
View in the app

A better way to browse. Learn more.

Unraid

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

hmgnsd

Members
  • Joined

  • Last visited

Everything posted by hmgnsd

  1. At the moment I'm having stuff enter my watch folder but the docker isn't doing anything with it. I've tried restarting the docker, stopping and then starting, removing everything from the watch folder and only adding one item back, a forced update and docker safe new permissions and nothing. How can I troubleshoot this further please?
  2. I do have this workflow but sonarr and radarr attempt to import the files before handbrake has finished encoding, because the download client has already told them that the files are ready for import. See some of my posts for workarounds, it'll not be 100% automated.
  3. sure #!/bin/bash if [ -f /var/run/mymover.pid ]; then if ps h `cat /var/run/mymover.pid` | grep mymover.sh ; then echo "mymover already running, sorry." exit 0 fi fi echo $$ >/var/run/mymover.pid echo "Moving files from $1 to $2" (cd "/mnt/user/downloads/Complete/"; find -depth -print \( ! -exec fuser -s '{}' \; -exec rsync -i -qdIWRpEAXogt --numeric-ids --inplace --remove-source-files {} "/mnt/user/downloads/Import/" \; \)) # Prune empty directories from source dir find "/mnt/user/downloads/Complete/*" -type d -empty -prune -exec rmdir --ignore-fail-on-non-empty {} \; # Prune empty directories from destination dir find "/mnt/user/downloads/Import/*" -type d -empty -prune -exec rmdir --ignore-fail-on-non-empty {} \; sync rm /var/run/mymover.pid echo "Moving all done."
  4. Ah, not my code. Copied from another thread where someone adapted the unRAID mover script. What I'd like is for everything to be moved from /mnt/user/downloads/Complete to /mnt/user/downloads/Import without the /Complete/ directory being removed. I'm really appreciating the replies
  5. hmm, still moves but throws up . find: `/mnt/user/downloads/Complete/*': No such file or directory /tmp/user.scripts/tmpScripts/Move Completed Downloads/script: line 17: -empty: command not found find: `/mnt/user/downloads/Import/*': No such file or directory /tmp/user.scripts/tmpScripts/Move Completed Downloads/script: line 21: -prune: command not found Moving all done.
  6. Like this? # Prune empty directories from source dir find cd "/mnt/user/downloads/Complete/" -type d -empty -prune -exec rmdir --ignore-fail-on-non-empty {} \; I get this error? . find: `cd': No such file or directory Moving all done.
  7. My apologies! Let me simplify; I would like the script to move the files and folders in the directory /downloads/complete/. What I have noticed, is that when that directory is empty and the script runs, it actually removes the directory /downloads/complete/. How could I adapt it to move the contents of the directory, but not remove the directory itself when empty?
  8. Hmm, was set to 'auto'. Set it to 'no' and now it works! Weird
  9. Ah, that's moving stuff but now /mnt/user/downloads/complete/season 01/ directory is left, for example... There's no way of getting the subdirectories from /complete/ moved without it deleting the directory /complete/ is it's empty? Am I making sense? I feel like I'm not.
  10. OK, anyone? This script to move files from one directory to another is removing the source directory if empty after it runs , how can I prevent it doing that? #!/bin/bash if [ -f /var/run/mymover.pid ]; then if ps h `cat /var/run/mymover.pid` | grep mymover.sh ; then echo "mymover already running, sorry." exit 0 fi fi echo $$ >/var/run/mymover.pid echo "Moving files from $1 to $2" (cd "/mnt/user/downloads/Complete/"; find -depth -print \( ! -exec fuser -s '{}' \; -exec rsync -i -qdIWRpEAXogt --numeric-ids --inplace --remove-source-files {} "/mnt/user/downloads/Import/" \; \)) # Prune empty directories from source dir find "/mnt/user/downloads/Complete/" -type d -empty -prune -exec rmdir --ignore-fail-on-non-empty {} \; # Prune empty directories from destination dir find "/mnt/user/downloads/Import/" -type d -empty -prune -exec rmdir --ignore-fail-on-non-empty {} \; sync rm /var/run/mymover.pid echo "Moving all done."
  11. I: 2018/03/14 22:45:28 app.go:57: controlr v2.9.1-367-243ce84-v2018.02.16a starting ... I: 2018/03/14 22:45:28 app.go:65: No config file specified. Using app defaults ... I: 2018/03/14 22:45:28 core.go:73: starting service Core ... I: 2018/03/14 22:45:28 core.go:266: Created ipmi sensor ... I: 2018/03/14 22:45:28 core.go:293: No ups detected ... I: 2018/03/14 22:45:28 server.go:70: Starting service Server ... I: 2018/03/14 22:45:28 server.go:89: Serving files from /usr/local/emhttp/plugins/controlr I: 2018/03/14 22:45:28 server.go:140: Server started listening https on :2378 I: 2018/03/14 22:45:28 api.go:46: Starting service Api ... I: 2018/03/14 22:45:28 api.go:90: Api started listening https on :2382 I: 2018/03/14 22:45:28 app.go:85: Press Ctrl+C to stop ... I: 2018/03/14 23:08:44 core.go:112: event: "/boot/config/plugins/dynamix/dynamix.cfg": WRITE I: 2018/03/14 23:08:44 core.go:114: modified file: /boot/config/plugins/dynamix/dynamix.cfg I: 2018/03/15 10:26:33 core.go:112: event: "/boot/config/plugins/dynamix/dynamix.cfg": WRITE I: 2018/03/15 10:26:33 core.go:114: modified file: /boot/config/plugins/dynamix/dynamix.cfg I: 2018/03/15 10:33:21 app.go:89: Received signal: (terminated) ... shutting down the app now ... I: 2018/03/15 10:33:21 api.go:105: stopped service Api ... I: 2018/03/15 10:33:21 server.go:157: stopped service Server ... I: 2018/03/15 10:33:21 core.go:141: stopped service Core ... I: 2018/03/15 11:05:47 app.go:57: controlr v2.9.1-367-243ce84-v2018.02.16a starting ... I: 2018/03/15 11:05:47 app.go:65: No config file specified. Using app defaults ... I: 2018/03/15 11:05:47 core.go:73: starting service Core ... I: 2018/03/15 11:05:47 core.go:266: Created ipmi sensor ... I: 2018/03/15 11:05:47 core.go:293: No ups detected ... I: 2018/03/15 11:05:47 server.go:70: Starting service Server ... I: 2018/03/15 11:05:47 server.go:89: Serving files from /usr/local/emhttp/plugins/controlr I: 2018/03/15 11:05:47 server.go:140: Server started listening https on :2378 I: 2018/03/15 11:05:47 api.go:46: Starting service Api ... I: 2018/03/15 11:05:47 api.go:90: Api started listening https on :2382 I: 2018/03/15 11:05:47 app.go:85: Press Ctrl+C to stop ...
  12. I can connect to server but can’t view logs... Running 6.4.1 not with https
  13. Thank you for the suggestion, I have looked at other possibilities before finding something that works for me regarding radarr/sonarr and post processing media. I can go in an delete the left overs manually but if I can get this script working it’d be much less maintenance.
  14. Hello all! Would anyone be able to cast their eyes over a couple of scripts I have ‘adapted’ for my download setup? The first one I don’t think there is a problem with, it should move Handbrake converted files from one directory to another where a media manager can pick them up: The next one, is supposed to delete the original files after they have been copied. The last time I tried it, it looked like it was removing files from all directories which was not the desired effect.
  15. Hello, getting a strange message that I don't recall seeing when running extended tests: Warning: parse_ini_file(/boot/config/share.cfg): failed to open stream: No such file or directory in /usr/local/emhttp/plugins/fix.common.problems/include/tests.php on line 1706 I've uninstalled and reinstalled the plugin and still get the error?
  16. Using Dolphin Docker to copy and I got ‘could not create symlink’ and then the file address to the unassigned device I was copying and ‘please check permissions’, do I need to have ownership of the destination as well? I thought that would be default on a blank unassigned device?
  17. In order to backup my appdata, I had to chown -R nobody:nogroup (which is I hope right!?) when I come to restoring the files to a new Docker instance of Plex, will it sort the permissions itself on install, or do I need to change permissions back?
  18. Damn was wondering about that, will have a look through gatekeeper and clamxav
  19. Replacing the ovpn, cert and pem files with those downloaded from PIA allows the docker to start up as expected, but if I restart it the error recurs and the docker is unable to start. Some more logs: nameserver 8.8.8.8nameserver 37.235.1.174nameserver 8.8.4.4nameserver 37.235.1.1772017-08-22 08:54:09,258 DEBG 'start-script' stdout output:[debug] Show name resolution for VPN endpoint nl.privateinternetaccess.com2017-08-22 08:54:09,322 DEBG 'start-script' stdout output:;; ->>HEADER<<- opcode: QUERY, rcode: NOERROR, id: 14850;; flags: qr rd ra ; QUERY: 1, ANSWER: 13, AUTHORITY: 0, ADDITIONAL: 0;; QUESTION SECTION:;; nl.privateinternetaccess.com. IN A;; ANSWER SECTION:nl.privateinternetaccess.com. 300 IN A 46.166.138.166nl.privateinternetaccess.com. 300 IN A 46.166.138.158nl.privateinternetaccess.com. 300 IN A 109.201.152.9nl.privateinternetaccess.com. 300 IN A 46.166.190.215nl.privateinternetaccess.com. 300 IN A 46.166.190.211nl.privateinternetaccess.com. 300 IN A 46.166.138.172nl.privateinternetaccess.com. 300 IN A 46.166.137.246nl.privateinternetaccess.com. 300 IN A 46.166.188.210nl.privateinternetaccess.com. 300 IN A 46.166.186.246nl.privateinternetaccess.com. 300 IN A 46.166.190.205nl.privateinternetaccess.com. 300 IN A 46.166.188.206nl.privateinternetaccess.com. 300 IN A 109.201.154.150nl.privateinternetaccess.com. 300 IN A 85.159.236.209;; AUTHORITY SECTION:;; ADDITIONAL SECTION:;; Query time: 62 msec;; SERVER: 37.235.1.174;; WHEN: Tue Aug 22 08:54:09 2017;; MSG SIZE rcvd: 2542017-08-22 08:54:09,322 DEBG 'start-script' stdout output:[debug] Show contents of hosts file2017-08-22 08:54:09,322 DEBG 'start-script' stdout output:127.0.0.1 localhost::1 localhost ip6-localhost ip6-loopbackfe00::0 ip6-localnetff00::0 ip6-mcastprefixff02::1 ip6-allnodesff02::2 ip6-allrouters172.17.0.6 43397d23a0d146.166.188.205 nl.privateinternetaccess.com2017-08-22 08:54:09,324 DEBG 'start-script' stdout output:[info] Adding 192.168.1.0/24 as route via docker eth02017-08-22 08:54:09,325 DEBG 'start-script' stdout output:[info] ip route defined as follows...--------------------2017-08-22 08:54:09,325 DEBG 'start-script' stdout output:default via 172.17.0.1 dev eth0172.17.0.0/16 dev eth0 proto kernel scope link src 172.17.0.6192.168.1.0/24 via 172.17.0.1 dev eth02017-08-22 08:54:09,325 DEBG 'start-script' stdout output:--------------------[debug] Modules currently loaded for kernel2017-08-22 08:54:09,330 DEBG 'start-script' stdout output:Module Size Used byxt_CHECKSUM 1335 1iptable_mangle 1658 1ipt_REJECT 1521 2nf_reject_ipv4 2483 1 ipt_REJECTebtable_filter 1903 0ebtables 14552 1 ebtable_filtervhost_net 9091 1tun 19304 4 vhost_netvhost 19681 1 vhost_netmacvtap 11622 1 vhost_netmacvlan 12389 1 macvtapxt_nat 1913 11veth 4966 0ipt_MASQUERADE 1277 15nf_nat_masquerade_ipv4 1865 1 ipt_MASQUERADEiptable_nat 1897 1nf_conntrack_ipv4 5874 3nf_nat_ipv4 4199 1 iptable_natiptable_filter 1706 1ip_tables 9853 3 iptable_mangle,iptable_filter,iptable_natnf_nat 11145 3 xt_nat,nf_nat_masquerade_ipv4,nf_nat_ipv4md_mod 36700 5bonding 92464 0e1000e 143207 0igb 128723 0ptp 9308 2 igb,e1000epps_core 5928 1 ptpfbcon 33164 70bitblit 4361 1 fbconfbcon_rotate 1964 1 bitblitfbcon_ccw 4678 1 fbcon_rotatefbcon_ud 4805 1 fbcon_rotatefbcon_cw 4606 1 fbcon_rotatesoftcursor 1341 4 fbcon_ud,fbcon_cw,fbcon_ccw,bitblitast 37457 1font 7588 1 fbconx86_pkg_temp_thermal 4669 0ttm 62682 1 astcoretemp 5340 0drm_kms_helper 86945 1 astcfbfillrect 3306 1 drm_kms_helpercfbimgblt 2047 1 drm_kms_helperkvm_intel 160551 6cfbcopyarea 3006 1 drm_kms_helperdrm 221720 4 ast,ttm,drm_kms_helpermpt3sas 168061 5i2c_i801 11888 0i2c_smbus 3041 1 i2c_i801agpgart 21314 2 ttm,drmsyscopyarea 2942 1 drm_kms_helpersysfillrect 3178 1 drm_kms_helpersysimgblt 2047 1 drm_kms_helperfb_sys_fops 1378 1 drm_kms_helperahci 26326 4fb 29760 7 fbcon_ud,fbcon_cw,fbcon_ccw,bitblit,softcursor,fbcon,drm_kms_helperi2c_algo_bit 4752 2 igb,astraid_class 3380 1 mpt3sasi2c_core 20390 7 i2c_algo_bit,igb,ast,i2c_i801,i2c_smbus,drm_kms_helper,drmfbdev 1030 2 fb,fbconlibahci 19716 1 ahciscsi_transport_sas 21714 1 mpt3saskvm 289949 1 kvm_intelipmi_si 36442 0video 27138 0backlight 5833 1 video2017-08-22 08:54:09,332 DEBG 'start-script' stdout output:[info] iptable_mangle support detected, adding fwmark for tables2017-08-22 08:54:09,335 DEBG 'start-script' stdout output:[debug] Docker interface defined as eth02017-08-22 08:54:09,337 DEBG 'start-script' stdout output:[debug] Docker IP defined as 172.17.0.62017-08-22 08:54:09,338 DEBG 'start-script' stdout output:[debug] Docker netmask defined as 255.255.0.02017-08-22 08:54:09,343 DEBG 'start-script' stdout output:[info] Docker network defined as 172.17.0.0/162017-08-22 08:54:09,374 DEBG 'start-script' stdout output:[info] iptables defined as follows...--------------------2017-08-22 08:54:09,375 DEBG 'start-script' stdout output:-P INPUT DROP-P FORWARD ACCEPT-P OUTPUT DROP-A INPUT -i tun0 -j ACCEPT-A INPUT -s 172.17.0.0/16 -d 172.17.0.0/16 -j ACCEPT-A INPUT -i eth0 -p udp -m udp --sport 1198 -j ACCEPT-A INPUT -i eth0 -p tcp -m tcp --dport 8112 -j ACCEPT-A INPUT -i eth0 -p tcp -m tcp --sport 8112 -j ACCEPT-A INPUT -s 192.168.1.0/24 -i eth0 -p tcp -m tcp --dport 58846 -j ACCEPT-A INPUT -s 192.168.1.0/24 -d 172.17.0.0/16 -i eth0 -p tcp -j ACCEPT-A INPUT -p icmp -m icmp --icmp-type 0 -j ACCEPT-A INPUT -i lo -j ACCEPT-A OUTPUT -o tun0 -j ACCEPT-A OUTPUT -s 172.17.0.0/16 -d 172.17.0.0/16 -j ACCEPT-A OUTPUT -o eth0 -p udp -m udp --dport 1198 -j ACCEPT-A OUTPUT -o eth0 -p tcp -m tcp --dport 8112 -j ACCEPT-A OUTPUT -o eth0 -p tcp -m tcp --sport 8112 -j ACCEPT-A OUTPUT -d 192.168.1.0/24 -o eth0 -p tcp -m tcp --sport 58846 -j ACCEPT-A OUTPUT -s 172.17.0.0/16 -d 192.168.1.0/24 -o eth0 -p tcp -j ACCEPT-A OUTPUT -p icmp -m icmp --icmp-type 8 -j ACCEPT-A OUTPUT -o lo -j ACCEPT2017-08-22 08:54:09,376 DEBG 'start-script' stdout output:--------------------2017-08-22 08:54:09,376 DEBG 'start-script' stdout output:[debug] OpenVPN command line:- /usr/bin/openvpn --cd /config/openvpn --config '/config/openvpn/Netherlands.ovpn' --daemon --reneg-sec 0 --mute-replay-warnings --auth-nocache --keepalive 10 60 --setenv VPN_PROV 'pia' --setenv DEBUG 'true' --setenv VPN_DEVICE_TYPE 'tun' --setenv VPN_REMOTE 'nl.privateinternetaccess.com' --script-security 2 --up /root/openvpnup.sh --up-delay --up-restart --writepid /root/openvpn.pid --remap-usr1 SIGHUP --log-append /dev/stdout --setenv STRICT_PORT_FORWARD 'yes' --disable-occ --auth-user-pass credentials.conf[info] Starting OpenVPN...2017-08-22 08:54:09,389 DEBG 'start-script' stdout output:Tue Aug 22 08:54:09 2017 WARNING: file 'credentials.conf' is group or others accessibleTue Aug 22 08:54:09 2017 OpenVPN 2.4.1 x86_64-unknown-linux-gnu [SSL (OpenSSL)] [LZO] [LZ4] [EPOLL] [PKCS11] [MH/PKTINFO] [AEAD] built on Mar 22 2017Tue Aug 22 08:54:09 2017 library versions: OpenSSL 1.1.0e 16 Feb 2017, LZO 2.102017-08-22 08:54:09,389 DEBG 'start-script' stdout output:Tue Aug 22 08:54:09 2017 NOTE: the current --script-security setting may allow this configuration to call user-defined scripts2017-08-22 08:54:09,389 DEBG 'start-script' stdout output:[info] OpenVPN started[debug] Waiting for valid IP address from tunnel...2017-08-22 08:54:09,390 DEBG 'start-script' stdout output:Tue Aug 22 08:54:09 2017 TCP/UDP: Preserving recently used remote address: [AF_INET]46.166.188.205:1198Tue Aug 22 08:54:09 2017 UDP link local: (not bound)2017-08-22 08:54:09,390 DEBG 'start-script' stdout output:Tue Aug 22 08:54:09 2017 UDP link remote: [AF_INET]46.166.188.205:11982017-08-22 08:54:09,515 DEBG 'start-script' stdout output:Tue Aug 22 08:54:09 2017 [bc0de5605339fd9b767f5086e373da88] Peer Connection Initiated with [AF_INET]46.166.188.205:11982017-08-22 08:54:10,771 DEBG 'start-script' stdout output:Tue Aug 22 08:54:10 2017 TUN/TAP device tun0 openedTue Aug 22 08:54:10 2017 do_ifconfig, tt->did_ifconfig_ipv6_setup=0Tue Aug 22 08:54:10 2017 /usr/bin/ip link set dev tun0 up mtu 15002017-08-22 08:54:10,772 DEBG 'start-script' stdout output:Tue Aug 22 08:54:10 2017 /usr/bin/ip addr add dev tun0 local 10.19.10.6 peer 10.19.10.52017-08-22 08:54:10,772 DEBG 'start-script' stdout output:Tue Aug 22 08:54:10 2017 /root/openvpnup.sh tun0 1500 1558 10.19.10.6 10.19.10.5 init2017-08-22 08:54:10,775 DEBG 'start-script' stdout output:[debug] Waiting for valid IP address from tunnel...[debug] Waiting for valid IP address from tunnel...2017-08-22 08:54:10,776 DEBG 'start-script' stdout output:Tue Aug 22 08:54:10 2017 Initialization Sequence Completed2017-08-22 08:54:10,802 DEBG 'privoxy-script' stdout output:[debug] Valid IP address from tunnel acquired '10.19.10.6'[info] Configuring Privoxy...2017-08-22 08:54:10,802 DEBG 'deluge-script' stdout output:[debug] Valid IP address from tunnel acquired '10.19.10.6'2017-08-22 08:54:10,805 DEBG 'deluge-script' stdout output:[info] Deluge not running2017-08-22 08:54:10,805 DEBG 'deluge-script' stdout output:[info] Deluge listening interface IP 0.0.0.0 and VPN provider IP 10.19.10.6 different, marking for reconfigure[debug] Waiting for file '/home/nobody/vpn_incoming_port.txt' to be generated (contains PIA API generated incoming port number)...2017-08-22 08:54:10,880 DEBG 'start-script' stdout output:[debug] Valid IP address from tunnel acquired '10.19.10.6'2017-08-22 08:54:10,880 DEBG 'start-script' stdout output:[debug] Valid IP address from tunnel acquired '10.19.10.6'2017-08-22 08:54:10,880 DEBG 'start-script' stdout output:[info] Strict port forwarding enabled, attempting to assign an incoming port...2017-08-22 08:54:10,881 DEBG 'start-script' stdout output:[debug] Valid IP address from tunnel acquired '10.19.10.6'2017-08-22 08:54:10,881 DEBG 'start-script' stdout output:[debug] Attempting to get external IP using Name Server 'ns1.google.com''...2017-08-22 08:54:10,884 DEBG 'start-script' stdout output:[info] Attempting to curl http://209.222.18.222:2000/?client_id=66e06820bab949e54676a52017f921654584fdce17e7bd0ad088a377d47bf550...2017-08-22 08:54:10,901 DEBG 'privoxy-script' stdout output:[info] All checks complete, starting Privoxy...2017-08-22 08:54:10,905 DEBG 'privoxy-script' stderr output:2017-08-22 08:54:10.905 2b3187e70ec0 Info: Privoxy version 3.0.262017-08-22 08:54:10.905 2b3187e70ec0 Info: Program name: /usr/bin/privoxy2017-08-22 08:54:10,934 DEBG 'start-script' stdout output:[warn] Response code 000 from curl != 2xx[warn] Exit code 56 from curl != 0[info] 12 retries left[info] Retrying in 10 secs...2017-08-22 08:54:10,939 DEBG 'start-script' stdout output:[info] Successfully retrieved external IP address 212.92.115.1072017-08-22 08:54:22,022 DEBG 'start-script' stdout output:[info] curl successful for http://209.222.18.222:2000/?client_id=66e06820bab949e54676a52017f921654584fdce17e7bd0ad088a377d47bf550, response code 2002017-08-22 08:54:22,024 DEBG 'start-script' stdout output:[debug] Successfully assigned incoming port 569392017-08-22 08:54:22,814 DEBG 'deluge-script' stdout output:[debug] Incoming port for tunnel is '56939'2017-08-22 08:54:22,815 DEBG 'deluge-script' stdout output:[info] Attempting to start Deluge...2017-08-22 08:54:23,029 DEBG 'deluge-script' stdout output:[info] Deluge listening interface currently defined as 10.32.10.6[info] Deluge listening interface will be changed to 10.19.10.6[info] Saving changes to Deluge config file /config/core.conf...2017-08-22 08:54:23,373 DEBG 'deluge-web-script' stdout output:[info] Starting Deluge webui...2017-08-22 08:54:23,619 DEBG 'deluge-script' stdout output:Setting random_port to False..Configuration value successfully updated.2017-08-22 08:54:23,863 DEBG 'deluge-script' stdout output:Setting listen_ports to (56939, 56939)..Configuration value successfully updated.2017-08-22 08:54:23,879 DEBG 'deluge-script' stdout output:[info] Deluge started[debug] VPN incoming port is 56939[debug] VPN IP is 10.19.10.6[debug] Deluge incoming port is 56939[debug] Deluge IP is 10.19.10.62017-08-22 08:54:39,344 WARN received SIGTERM indicating exit request2017-08-22 08:54:39,345 DEBG killing privoxy-script (pid 135) with signal SIGTERM2017-08-22 08:54:39,345 INFO waiting for start-script, deluge-script, deluge-web-script, privoxy-script to die2017-08-22 08:54:39,345 DEBG fd 26 closed, stopped monitoring <POutputDispatcher at 47717653591968 for <Subprocess at 47717653420152 with name privoxy-script in state STOPPING> (stderr)>2017-08-22 08:54:39,345 DEBG fd 22 closed, stopped monitoring <POutputDispatcher at 47717652339312 for <Subprocess at 47717653420152 with name privoxy-script in state STOPPING> (stdout)>2017-08-22 08:54:39,345 INFO stopped: privoxy-script (terminated by SIGTERM)2017-08-22 08:54:39,345 DEBG received SIGCLD indicating a child quit2017-08-22 08:54:39,345 DEBG killing deluge-web-script (pid 134) with signal SIGTERM2017-08-22 08:54:39,346 DEBG fd 17 closed, stopped monitoring <POutputDispatcher at 47717652337224 for <Subprocess at 47717653808264 with name deluge-web-script in state STOPPING> (stdout)>2017-08-22 08:54:39,346 DEBG fd 21 closed, stopped monitoring <POutputDispatcher at 47717652337440 for <Subprocess at 47717653808264 with name deluge-web-script in state STOPPING> (stderr)>2017-08-22 08:54:39,346 INFO stopped: deluge-web-script (terminated by SIGTERM)2017-08-22 08:54:39,346 DEBG received SIGCLD indicating a child quit2017-08-22 08:54:39,346 DEBG killing deluge-script (pid 133) with signal SIGTERM2017-08-22 08:54:39,346 DEBG fd 16 closed, stopped monitoring <POutputDispatcher at 47717652339240 for <Subprocess at 47717653809128 with name deluge-script in state STOPPING> (stderr)>2017-08-22 08:54:39,346 DEBG fd 11 closed, stopped monitoring <POutputDispatcher at 47717652338880 for <Subprocess at 47717653809128 with name deluge-script in state STOPPING> (stdout)>2017-08-22 08:54:39,346 INFO stopped: deluge-script (terminated by SIGTERM)2017-08-22 08:54:39,346 DEBG received SIGCLD indicating a child quit2017-08-22 08:54:39,346 DEBG killing start-script (pid 132) with signal SIGTERM2017-08-22 08:54:39,346 DEBG fd 8 closed, stopped monitoring <POutputDispatcher at 47717653418856 for <Subprocess at 47717653420584 with name start-script in state STOPPING> (stdout)>2017-08-22 08:54:39,346 DEBG fd 10 closed, stopped monitoring <POutputDispatcher at 47717653419720 for <Subprocess at 47717653420584 with name start-script in state STOPPING> (stderr)>2017-08-22 08:54:39,346 INFO stopped: start-script (terminated by SIGTERM)2017-08-22 08:54:39,346 DEBG received SIGCLD indicating a child quit
  20. OK, new problem... After making sure my PIA vpn files were up to date the docker will not start. The logs show: 2017-08-22 08:37:40.189561 [info] Host is running unRAID 2017-08-22 08:37:40.205327 [info] System information Linux 43397d23a0d1 4.9.30-unRAID #1 SMP PREEMPT Fri May 26 13:56:36 PDT 2017 x86_64 GNU/Linux 2017-08-22 08:37:40.222821 [info] PUID defined as '99' 2017-08-22 08:37:40.242118 [info] PGID defined as '100' 2017-08-22 08:37:40.272098 [info] UMASK defined as '000' 2017-08-22 08:37:40.290379 [info] Permissions already set for volume mappings 2017-08-22 08:37:40.310669 [info] VPN_ENABLED defined as 'yes' 2017-08-22 08:37:40.331278 [info] OpenVPN config file (ovpn extension) is located at /config/openvpn/._Netherlands.ovpn dos2unix: Binary symbol 0x00 found at line 1 dos2unix: Skipping binary file /config/openvpn/._Netherlands.ovpn 2017-08-22 08:37:40.350977 [crit] VPN configuration file /config/openvpn/._Netherlands.ovpn does not contain 'remote' line, showing contents of file before exit... Mac OS X 2∞‚ATTR_m‚ò9ò9com.apple.quarantine0083;599ab026;Safari;03D17104-252F-46C7-A1BA-971EF82157E0This resource fork intentionally left blank ˇˇ The ovpn path should be /config/openvpn/netherlands.ovpn not /._netherlands.ovpn? But when checking the oven file the line 'remote nl.privateinternetaccess.com 1198' is present.
  21. Thank you for the reply! There was a lot of info to parse.
  22. Managed to get it working by comparing the appdata contents of the delugevpn and sabvpn dockers and copying over the openvpn files.
  23. So removing port 8118 and setting privoxy to 'no' lets the docker be created, but i can't load the webui
  24. Right, Privoxy port is 8118? So removing that will remove the conflict, but the sabnzbdvpn docker is still VPNd?
  25. Is it possible to have sab vpn and deluge vpn running at the same time? I've had deluge running for a while now but after SpaceInvader's Sonarr video decided to try sab as well. When setting up binhex sab vpn docker it tells me the ports are in use already. Do I just need to choose different ports? Will there be problems further down the line? Or is there a way of using a sab docker with privoxy?

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.