Jump to content

binhex

Community Developer
  • Posts

    7,921
  • Joined

  • Last visited

  • Days Won

    38

Posts posted by binhex

  1. On 6.1.2, happening as well, same issue with an open ssh session.

     

    add me to the list of people with this issue, running 6.1.3, i do have a running vm, as well of course a few dockers :-), syslog attached.

     

    here is the message im recieving (ssh in using putty):-

     

    Message from syslogd@Tower at Oct  4 22:38:20 ...
    kernel:unregister_netdevice: waiting for lo to become free. Usage count = 1
    
    Message from syslogd@Tower at Oct  4 22:38:30 ...
    kernel:unregister_netdevice: waiting for lo to become free. Usage count = 1
    

    syslog-2015100500.zip

  2. I'm really new to Docker, but if i'm getting this correct, you can change and simplify your start.sh file for Madsonic with the following:

     

    # enable/disable ssl based on env variable set from docker container run command
    SETSSL="--port=4040"
    
    if [[ $SSL == "yes" ]]; then
    echo "Enabling SSL for Madsonic"
    SETSSL="--https-port=4050"
    else
    echo "Disabling SSL for Madsonic"
    fi
    
    /opt/madsonic/madsonic.sh --home=/config --host=0.0.0.0 ${SETSSL} --context-path=/${CONTEXT_PATH} --default-music-folder=/media --default-podcast-folder=/config/media/podcast --default-playlist-import-folder=/config/playlists/import --default-playlist-export-folder=/config/playlists/export --default-playlist-backup-folder=/config/playlists/backup
    

     

    Then, you just need to have an environment variable for "CONTEXT_PATH" for someone to change it. If it's blank, then it defaults to root which is how it is now.

     

    thats exactly what you would do :-), i shall "make it so", keep an eye for an updated image dropping in the next few days, got bored and did it :-), pull down the update then please add env var CONTEXT_PATH and set the value e.g. "/madsonic" (you will need to specify the forward slash)

  3. Binhex,

    I'm trying to use your delugevpn docker on a VM (not on unRAID) on which I mount the /data volume to a fstab mount point which maps to a unRAID disk. The problem I'm experiencing is that once the docker starts I'm unable to get at the deluge web console on port 8112. Telneting from with the VM to 8112 seems to work (telnet 0.0.0.0 8112), so I assume the web console is working but I'm seeing an error in the docker log for deluge daemon (attached).

     

    exceptions.RuntimeError: Cannot assign requested address

     

    I start your docker as such:

     

    docker run -d --cap-add=NET_ADMIN -p 8112:8112 -p 8118:8118 --name=delugevpn -v /media/unRAID/downloads:/data -v /home/user/binhex/arch-delugevpn/config:/config -v /etc/localtime:/etc/localtime:ro -e VPN_ENABLED=yes -e VPN_USER=XXX -e VPN_PASS=XXX -e VPN_REMOTE=nl.privateinternetaccess.com -e VPN_PORT=1194 -e VPN_PROV=pia -e ENABLE_PRIVOXY=yes -e LAN_RANGE=192.168.3.1-192.168.3.254 binhex/arch-delugevpn

     

    I also tried starting the container with:

     

    docker run -d --net=host --privileged -e BIND_ADDR=VM_IP_ADDRESS ...

     

    EDIT:

    I'm able to see the deluged process despite the error. But I can't access the web console from another machine on my network despite starting the container with the LAN_RANGE variable, guess it might be iptables related or something. When does the iptable.sh file get run? Thoughts?

     

    hi joelones, the log is showing a traceback from python, so this is the first issue, i think whats happening is deluge doesnt have time to recognise the fact it has an adapter with that ip address and thus waves its hands in the air and says WTF, it then re-tries and deluge has caught up by then and binds correctly to the ip, error shown below:-

     

    str(self.config["listen_interface"]).strip())
    exceptions.RuntimeError: Cannot assign requested address
    

     

    other than that the log looks fairly clean and there shouldnt be any issue running this docker on any linux platform to be honest, i think what i will do to fix the above is make the sleep a bit longer, give deluge a chance to see the interface and ip, python isnt known for performance :-).

     

    the lan_range isnt quite working yet, thats something i put in as i was fiarly sure it would be an easy fix, turns out its a bitch, but i shall get that working, for now its bust, so you must talk to deluge webui and daemon on the hosts ip address or between docker containers (running on the same host).

  4. I've been having an issue with Sonarr lately - it's not picking up anything from the KAT RSS feed.  Worked fine for a few months, and nothing has changed to my knowledge.  Everything seems to be working, including the manual searches.  Nothing obviously wrong in the logs that I can see.

     

    Anyone else having similar issues?

     

    i know what this issue is, KAT have changed the way you download torrents from their website, you now can a redirect before you get the torrent download, this is tripping up a lot of automation tools, in fact this is causing issues for my own app MovieGrabber, so im fairly confident this is the issue.

     

    oo looks like KAT have now removed the redirection!, things now work again, at least they do for MovieGrabber, please re-check for Sonarr now.

     

    see some discussion of a similar issue on the sonarr forums, it seems that issue was resolved in a recent update.

     

    This make me notice I'm running version 2.0.0.3212, while the latest in the AUR is 2.0.0.3357-1 (still a couple months old).  unRAID says updates are "Not Available".  Is this docker image way out of date, or is something messed up and why can't I see the update?

     

    i wasnt aware there was a later version, my monitoring software i use must of failed me somehow, in any case i have now triggered a new build so please pull down at your convenience. A quick word of caution though, i dont think this will fix the KAT redirect issue, as this is a very recent change by KAT and thus is probably only fixed in the very latest bleeding edge builds of Sonarr, worth a go though, you never know right :-). - possibly a non issue now, see previous remarks above

  5. Since the latest update, the DelugeVPN docker has been acting up.

     

    I have the scheduler plugin installed and it used to work fine, but now it will not unpause the dockers when the schedule gets to the "Normal" time, and it's not pausing when the schedule gets to the "Paused" times.

     

    I have to restart the docker after we get into the normal time, and it works perfectly, but it's not stopping downloads automatically when it gets into the paused time; which has killed my data on my limited internet plan :(

     

    Is there any way for me to go back to the previous docker/deluge version, which worked just fine?

     

    yep i spotted this also, i have for now created a tag so you can roll back, if you open unraid webui and do an advanced edit on the docker container, then change the Repository line to be "binhex/arch-delugevpn:1.3.11" then save it should pick up 1.3.11 and you should be back in business.

     

    i did attempt to raise this as a bug on the deluge website but their captcha thing is completely bust so i cant even register in order to raise the bug *sigh*, lets hope somebody who does have an account has noticed this and created the bug report.

  6. Hi Binhex,

     

    Any plans on updating Madsonic to the new 6.0 beta versions??

     

    Looks like they have a bunch of new features....

     

    If not the beta versions...can you update to the new stable version:  Madsonic 5.1.5260?

     

    Thanks!

     

    hi airbillion, no plans to support the latest beta (5260) im afraid, i want to stick with stable versions for now, but after your little nudge i did notice there is a newer stable build (5250), so i have now updated the image, please update at your convenience.

     

    binhex.

  7. I've been running the binhex-plex docker for quite some time, but I see now you have a plexpass version - what would be the correct way to switch to plexpass?

     

    untested, but here is how i would probably approach this:-

     

    1. create screenshots of plex webui and how you have it configured for media, paths etc

    2. download plexpass, configure same as plex EXCEPT /config which should point at a new folder

    3. run plexpass edition to generate files/folders

    4. configure plexpass to point at same media folders (see screenshots)

    5. stop plexpass docker

    6. stop plex docker

    7. copy media and metadata folders from config for plex to plexpass

    8. start plexpass edition and cross your fingers :-)

     

     

     

     

     

     

  8. Hello binhex,

     

    Thanks for the reply.  I was able to read the faq before, but seeing my ios app on ipads won't run, hence I thought my server needs upgrade already.  Thanks, I will wait instead.

     

    Both plex and plex pass edition are up to date, so you should simply be able to check for updates and then update the docker image, what version is the plex webui reporting your running?

     

    Where do I check for updates?  Going into Docker tab shows plex is updated.  Accessing http://192.168.1.103:32400/web/index.html WEB tab shows Version 2.4.9 in settings.  What am I missing?  Opening Plex on IOS 8.4 shows it couldn't connect to server, says "HINT- Tap here to select another server.  Seeing another Tower, where it says Needs Update.

     

    Going to settings, Server tab, shows Version 0.9.12.4  An update is available. Please install manually.

     

    Taken from FAQ Q10:-

     

    Once the new image has been built, then open the unRAID webui and click on the "Docker" tab and then press the "Check for Updates" button, this should then change the "Version" for the Docker container to "update ready" then simply click on this and click the "Just do it!" button to begin the download of the newer image.

     

    if your not seeing "update ready" then either there isn't currently a new image available yet, or your running a beta version of unraid, i have seen earlier beta's of v6 now dont show updates pending for docker, 6.1.0 and later should work fine.

     

    ok so 0.9.12.4 is out of date, you should see "update ready" if you follow the instructions quoted above.

  9. Question concerning about the best way to go about this...

     

    I have a outbound vpn setup at the router level so that I have control of which IPs within the network go out via the vpn or not. Currently I have the unRAID (virtualized ESXi) IP address setup such that all traffic goes out a specific vpn and I'd like to keep it this way because of other dockers...

     

    Now my problem is I'd like to use the delugepvn docker but itself creates a vpn connect and is bound to the same IP thus traffic would seem go out via two vpns which I do not want. Thoughts on what I can do here?

     

    Maybe multiple IPs and bind the deluge docker on another IP?

     

    How about simply disable the vpn for delugevpn? You can do this in the advanced settings section for the docker configuration.

  10. Hello binhex,

     

    Thanks for the reply.  I was able to read the faq before, but seeing my ios app on ipads won't run, hence I thought my server needs upgrade already.  Thanks, I will wait instead.

     

    Both plex and plex pass edition are up to date, so you should simply be able to check for updates and then update the docker image, what version is the plex webui reporting your running?

  11. I'm having a problem where my sickrage docker won't search when adding a new show - it just times out. The log has lots of errors that say "LockFailed: Function not implemented" and other python problems. Log attached.

     

    File "/opt/sickrage/lib/requests/models.py", line 733, in content
    self._content = bytes().join(self.iter_content(CONTENT_CHUNK_SIZE)) or bytes()
    File "/opt/sickrage/lib/requests/models.py", line 656, in generate
    for chunk in self.raw.stream(chunk_size, decode_content=True):
    File "/opt/sickrage/lib/requests/packages/urllib3/response.py", line 273, in stream
    data = self.read(amt=amt, decode_content=decode_content)
    File "/opt/sickrage/lib/requests/packages/urllib3/response.py", line 203, in read
    data = self._fp.read(amt)
    File "/opt/sickrage/lib/cachecontrol/filewrapper.py", line 54, in read
    self.__callback(self.__buf.getvalue())
    File "/opt/sickrage/lib/cachecontrol/controller.py", line 244, in cache_response
    self.serializer.dumps(request, response, body=body),
    File "/opt/sickrage/lib/cachecontrol/caches/file_cache.py", line 99, in set
    with self.lock_class(name) as lock:
    File "/opt/sickrage/lib/lockfile/__init__.py", line 238, in __enter__
    self.acquire()
    File "/opt/sickrage/lib/lockfile/linklockfile.py", line 34, in acquire
    raise LockFailed("%s" % e.strerror)
    LockFailed: Function not implemented
    , Retrying in 12 seconds...
    Unknown exception while loading URL http://th
    2015-08-19 12:42:57,370 DEBG 'sickrage' stderr output:
    12:42:57 ERROR::SHOWQUEUE-ADD :: Show name with ID 72173 don't exist in theTVDB anymore. Please change/delete your local .nfo file or remove it from your TRAKT watchlist
    Traceback (most recent call last):
    File "/opt/sickrage/sickbeard/show_queue.py", line 266, in run
    s = t[self.indexer_id]
    File "/opt/sickrage/lib/tvdb_api/tvdb_api.py", line 951, in __getitem__
    self._getShowData(key, self.config['language'], True)
    File "/opt/sickrage/lib/tvdb_api/tvdb_api.py", line 846, in _getShowData
    self.config['url_seriesInfo'] % (sid, getShowInLanguage)
    File "/opt/sickrage/lib/tvdb_api/tvdb_api.py", line 635, in _getetsrc
    raise tvdb_error(e)
    tvdb_error: Unknown exception while loading URL http://thetvdb.com/api/F9C450E78D99172E/series/72173/en.xml: Traceback (most recent call last):
    File "/opt/sickrage/lib/tvdb_api/tvdb_api.py", line 577, in _loadUrl
    resp = session.get(url.strip(), params=params)
    File "/opt/sickrage/lib/requests/sessions.py", line 476, in get
    return self.request('GET', url, **kwargs)
    File "/opt/sickrage/lib/requests/sessions.py", line 464, in request
    resp = self.send(prep, **send_kwargs)
    File "/opt/sickrage/lib/requests/sessions.py", line 613, in send
    r.content
    File "/opt/sickrage/lib/requests/models.py", line 733, in content
    self._content = bytes().join(self.iter_content(CONTENT_CHUNK_SIZE)) or bytes()
    File "/opt/sickrage/lib/requests/models.py", line 656, in generate
    for chunk in self.raw.stream(chunk_size, decode_content=True):
    File "/opt/sickrage/lib/requests/packages/urllib3/response.py", line 273, in stream
    data = self.read(amt=amt, decode_content=decode_content)
    File "/opt/sickrage/lib/requests/packages/urllib3/response.py", line 203, in read
    data = self._fp.read(amt)
    File "/opt/sickrage/lib/cachecontrol/filewrapper.py", line 54, in read
    self.__callback(self.__buf.getvalue())
    File "/opt/sickrage/lib/cachecontrol/controller.py", line 244, in cache_response
    self.serializer.dumps(request, response, body=body),
    File "/opt/sickrage/lib/cachecontrol/caches/file_cache.py", line 99, in set
    with self.lock_class(name) as lock:
    File "/opt/sickrage/lib/lockfile/__init__.py", line 238, in __enter__
    self.acquire()
    File "/opt/sickrage/lib/lockfile/linklockfile.py", line 34, in acquire
    raise LockFailed("%s" % e.strerror)
    LockFailed: Function not implemented
    
    
    2015-08-19 12:42:59,786 DEBG 'sickrage' stderr output:
    12:42:59 INFO::SHOWQUEUE-ADD :: Starting to add show /media/Atlantis (2013)
    
    2015-08-19 12:42:59,787 DEBG 'sickrage' stderr output:
    12:42:59 INFO::SHOWQUEUE-ADD :: theTVDB: {'useZip': True, 'apikey': 'F9C450E78D99172E', 'cache': '/config/cache/indexers/theTVDB', 'language': 'en'}
    
    2015-08-19 12:43:00,215 DEBG 'sickrage' stdout output:
    etvdb.com/api/F9C450E78D99172E/series/72173/en.xml: Traceback (most recent call last):
    File "/opt/sickrage/lib/tvdb_api/tvdb_api.py", line 577, in _loadUrl
    resp = session.get(url.strip(), params=params)
    File "/opt/sickrage/lib/requests/sessions.py", line 476, in get
    return self.request('GET', url, **kwargs)
    File "/opt/sickrage/lib/requests/sessions.py", line 464, in request
    resp = self.send(prep, **send_kwargs)
    File "/opt/sickrage/lib/requests/sessions.py", line 613, in send
    r.content
    File "/opt/sickrage/lib/requests/models.py", line 733, in content
    self._content = bytes().join(self.iter_content(CONTENT_CHUNK_SIZE)) or bytes()
    File "/opt/sickrage/lib/requests/models.py", line 656, in generate
    for chunk in self.raw.stream(chunk_size, decode_content=True):
    File "/opt/sickrage/lib/requests/packages/urllib3/response.py", line 273, in stream
    data = self.read(amt=amt, decode_content=decode_content)
    File "/opt/sickrage/lib/requests/packages/urllib3/response.py", line 203, in read
    data = self._fp.read(amt)
    File "/opt/sickrage/lib/cachecontrol/filewrapper.py", line 54, in read
    self.__callback(self.__buf.getvalue())
    File "/opt/sickrage/lib/cachecontrol/controller.py", line 244, in cache_response
    self.serializer.dumps(request, response, body=body),
    File "/opt/sickrage/lib/cachecontrol/caches/file_cache.py", line 99, in set
    with self.lock_class(name) as lock:
    File "/opt/sickrage/lib/lockfile/__init__.py", line 238, in __enter__
    self.acquire()
    File "/opt/sickrage/lib/lockfile/linklockfile.py", line 34, in acquire
    raise LockFailed("%s" % e.strerror)
    LockFailed: Function not implemented
    , Retrying in 12 seconds...
    Unknown exception while loading URL http://thetvdb.com/api/GetSeries.php: Traceback (most recent call last):
    File "/opt/sickrage/lib/tvdb_api/tvdb_api.py", line 577, in _loadUrl
    resp = session.get(url.strip(), params=params)
    File "/opt/sickrage/lib/requests/sessions.py", line 476, in get
    return self.request('GET', url, **kwargs)
    File "/opt/sickrage/lib/requests/sessions.py", line 464, in request
    resp = self.send(prep, **send_kwargs)
    File "/opt/sickrage/lib/requests/sessions.py", line 613, in send
    r.content
    File "/opt/sickrage/lib/requests/models.py", line 733, in content
    self._content = bytes().join(self.iter_content(CONTENT_CHUNK_SIZE)) or bytes()
    File "/opt/sickrage/lib/requests/models.py", line 656, in generate
    for chunk in self.raw.stream(chunk_size, decode_content=True):
    File "/opt/sickrage/lib/requests/packages/urllib3/response.py", line 273, in stream
    data = self.read(amt=amt, decode_content=decode_content)
    File "/opt/sickrage/lib/requests/packages/urllib3/response.py", line 203, in read
    data = self._fp.read(amt)
    File "/opt/sickrage/lib/cachecontrol/filewrapper.py", line 54, in read
    self.__callback(self.__buf.getvalue())
    File "/opt/sickrage/lib/cachecontrol/controller.py", line 244, in cache_response
    self.serializer.dumps(request, response, body=body),
    File "/opt/sickrage/lib/cachecontrol/caches/file_cache.py", line 99, in set
    with self.lock_class(name) as lock:
    File "/opt/sickrage/lib/lockfile/__init__.py", line 238, in __enter__
    self.acquire()
    File "/opt/sickrage/lib/lockfile/linklockfile.py", line 34, in acquire
    raise LockFailed("%s" % e.strerror)
    LockFailed: Function not implemented
    , Retrying in 12 seconds...
    Unknown exception while loading URL http://thetvdb.com/api/F9C450E78D99172E/series/248596/en.xml: Traceback (most recent call last):
    File "/opt/sickrage/lib/tvdb_api/tvdb_api.py", line 577, in _loadUrl
    resp = session.get(url.strip(), params=params)
    File "/opt/sickrage/lib/requests/sessions.py", line 476, in get
    return self.request('GET', url, **kwargs)
    File "/opt/sickrage/lib/requests/sessions.py", line 464, in request
    resp = self.send(prep, **send_kwargs)
    File "/opt/sickrage/lib/requests/sessions.py", line 613, in send
    r.content
    File "/opt/sickrage/lib/requests/models.py", line 733, in content
    self._content = bytes().join(sel
    2015-08-19 12:43:08,651 WARN received SIGTERM indicating exit request
    2015-08-19 12:43:08,652 DEBG killing sickrage (pid 10) with signal SIGTERM
    2015-08-19 12:43:08,652 INFO waiting for sickrage to die
    2015-08-19 12:43:08,653 DEBG 'sickrage' stderr output:
    12:43:08 INFO::MAIN :: Signal 15 caught, saving and exiting...
    
    2015-08-19 12:43:08,686 DEBG 'sickrage' stderr output:
    12:43:08 INFO::EVENT-QUEUE :: Aborting all threads
    
    2015-08-19 12:43:08,687 DEBG 'sickrage' stderr output:
    12:43:08 INFO::EVENT-QUEUE :: Waiting for the EVENTS thread to exit
    
    2015-08-19 12:43:08,687 DEBG 'sickrage' stderr output:
    12:43:08 INFO::EVENT-QUEUE :: Waiting for the DAILYSEARCH thread to exit
    
    2015-08-19 12:43:08,852 DEBG 'sickrage' stderr output:
    12:43:08 INFO::EVENT-QUEUE :: Waiting for the BACKLOG thread to exit
    
    2015-08-19 12:43:08,916 DEBG 'sickrage' stderr output:
    12:43:08 INFO::EVENT-QUEUE :: Waiting for the SHOWUPDATER thread to exit
    
    2015-08-19 12:43:09,407 DEBG 'sickrage' stdout output:
    f.iter_content(CONTENT_CHUNK_SIZE)) or bytes()
    File "/opt/sickrage/lib/requests/models.py", line 656, in generate
    for chunk in self.raw.stream(chunk_size, decode_content=True):
    File "/opt/sickrage/lib/requests/packages/urllib3/response.py", line 273, in stream
    data = self.read(amt=amt, decode_content=decode_content)
    File "/opt/sickrage/lib/requests/packages/urllib3/response.py", line 203, in read
    data = self._fp.read(amt)
    File "/opt/sickrage/lib/cachecontrol/filewrapper.py", line 54, in read
    self.__callback(self.__buf.getvalue())
    File "/opt/sickrage/lib/cachecontrol/controller.py", line 244, in cache_response
    self.serializer.dumps(request, response, body=body),
    File "/opt/sickrage/lib/cachecontrol/caches/file_cache.py", line 99, in set
    with self.lock_class(name) as lock:
    File "/opt/sickrage/lib/lockfile/__init__.py", line 238, in __enter__
    self.acquire()
    File "/opt/sickrage/lib/lockfile/linklockfile.py", line 34, in acquire
    raise LockFailed("%s" % e.strerror)
    LockFailed: Function not implemented
    , Retrying in 3 seconds...
    Unknown exception while loading URL http://thetvdb.com/api/F9C450E78D99172E/series/248596/en.xml: Traceback (most recent call last):
    File "/opt/sickrage/lib/tvdb_api/tvdb_api.py", line 577, in _loadUrl
    resp = session.get(url.strip(), params=params)
    File "/opt/sickrage/lib/requests/sessions.py", line 476, in get
    return self.request('GET', url, **kwargs)
    File "/opt/sickrage/lib/requests/sessions.py", line 464, in request
    resp = self.send(prep, **send_kwargs)
    File "/opt/sickrage/lib/requests/sessions.py", line 613, in send
    r.content
    File "/opt/sickrage/lib/requests/models.py", line 733, in content
    self._content = bytes().join(self.iter_content(CONTENT_CHUNK_SIZE)) or bytes()
    File "/opt/sickrage/lib/requests/models.py", line 656, in generate
    for chunk in self.raw.stream(chunk_size, decode_content=True):
    File "/opt/sickrage/lib/requests/packages/urllib3/response.py", line 273, in stream
    data = self.read(amt=amt, decode_content=decode_content)
    File "/opt/sickrage/lib/requests/packages/urllib3/response.py", line 203, in read
    data = self._fp.read(amt)
    File "/opt/sickrage/lib/cachecontrol/filewrapper.py", line 54, in read
    self.__callback(self.__buf.getvalue())
    File "/opt/sickrage/lib/cachecontrol/controller.py", line 244, in cache_response
    self.serializer.dumps(request, response, body=body),
    File "/opt/sickrage/lib/cachecontrol/caches/file_cache.py", line 99, in set
    with self.lock_class(name) as lock:
    File "/opt/sickrage/lib/lockfile/__init__.py", line 238, in __enter__
    self.acquire()
    File "/opt/sickrage/lib/lockfile/linklockfile.py", line 34, in acquire
    raise LockFailed("%s" % e.strerror)
    LockFailed: Function not implemented
    , Retrying in 6 seconds...
    Unknown exception while loading URL http://thetvdb.com/api/F9C450E78D99172E/series/248596/en.xml: Traceback (most recent call last):
    File "/opt/sickrage/lib/tvdb_api/tvdb_api.py", line 577, in _loadUrl
    resp = session.get(url.strip(), params=params)
    File "/opt/sickrage/lib/requests/sessions.py", line 476, in get
    return self.request('GET', url, **kwargs)
    File "/opt/sickrage/lib/requests/sessions.py", line 464, in request
    resp = self.send(prep, **send_kwargs)
    File "/opt/sickrage/lib/requests/sessions.py", line 613, in send
    r.content
    File "/opt/sickrage/lib/requests/models.py", line 733, in content
    self._content = bytes().join(self.iter_content(CONTENT_CHUNK_SIZE)) or bytes()
    File "/opt/sickrage/lib/requests/models.py", line 656, in generate
    for chunk in self.raw.stream(chunk_size, decode_content=True):
    File "/opt/sickrage/lib/requests/packages/urllib3/response.py", line 273, in stream
    data = self.read(amt=amt, decode_content=decode_content)
    File "/opt/sickrage/lib/requests/packages/urllib3/response.py", line 203, in read
    data = self._fp.read(amt)
    File "/opt/sickrage/lib/cachecontrol/filewrapper.py", line 54, in read
    self.__callback(self.__buf.getvalue())
    File "/opt/sickrage/lib/cachecontr
    2015-08-19 12:43:09,782 DEBG 'sickrage' stderr output:
    12:43:09 INFO::EVENT-QUEUE :: Waiting for the VERSIONCHECKER thread to exit
    
    2015-08-19 12:43:10,498 DEBG 'sickrage' stderr output:
    12:43:10 INFO::EVENT-QUEUE :: Waiting for the SHOWQUEUE thread to exit
    
    2015-08-19 12:43:10,813 DEBG 'sickrage' stderr output:
    12:43:10 INFO::EVENT-QUEUE :: Waiting for the SEARCHQUEUE thread to exit
    
    2015-08-19 12:43:11,814 INFO waiting for sickrage to die
    2015-08-19 12:43:11,829 DEBG 'sickrage' stderr output:
    12:43:11 INFO::EVENT-QUEUE :: Waiting for the POSTPROCESSER thread to exit
    
    2015-08-19 12:43:12,745 DEBG 'sickrage' stderr output:
    12:43:12 INFO::EVENT-QUEUE :: Waiting for the TRAKTCHECKER thread to exit
    
    2015-08-19 12:43:12,777 DEBG 'sickrage' stderr output:
    12:43:12 INFO::EVENT-QUEUE :: Waiting for the TRAKTROLLING thread to exit
    
    2015-08-19 12:43:13,794 DEBG 'sickrage' stderr output:
    12:43:13 INFO::EVENT-QUEUE :: Waiting for the PROPERFINDER thread to exit
    
    2015-08-19 12:43:14,810 DEBG 'sickrage' stderr output:
    12:43:14 INFO::EVENT-QUEUE :: Waiting for the SUBTITLESFINDER thread to exit
    
    2015-08-19 12:43:15,776 DEBG 'sickrage' stderr output:
    12:43:15 INFO::EVENT-QUEUE :: Saving all shows to the database
    
    2015-08-19 12:43:15,776 INFO waiting for sickrage to die
    2015-08-19 12:43:15,776 DEBG 'sickrage' stderr output:
    12:43:15 INFO::EVENT-QUEUE :: Saving config file to disk
    
    2015-08-19 12:43:15,803 DEBG 'sickrage' stderr output:
    12:43:15 INFO::EVENT-QUEUE :: Shutting down Tornado
    
    2015-08-19 12:43:15,811 DEBG fd 8 closed, stopped monitoring (stderr)>
    2015-08-19 12:43:15,811 DEBG fd 6 closed, stopped monitoring (stdout)>
    2015-08-19 12:43:15,812 INFO stopped: sickrage (exit status 0)
    2015-08-19 12:43:15,812 DEBG received SIGCLD indicating a child quit
    
    

     

    This is a brand new install of sickrage. Any ideas about what's wrong here?

     

    TIA.

     

    Did you ever find a solution to this? I'm having the same problem as well :-(

     

    sickrage is still under heavy development, there have been about 3 releases in the last week alone!, i would recommend stopping sickrage, delete supervisord.log file and then pull down the latest docker images, run it and keep an eye on the new supervisord.log for errors.

     

    at the end of the day there isnt much i can do about fundamental issues with the applications unfortunately, if its related to docker then i can take a look but if the app just doesn't work then your best bet is a post on the applications support forum.

  12. Hi,

     

    I am using the DelugeVPN docker, for the most part it is working, apart from some plugin's I can't get going, but I have posted about those before.

     

    The issue I want to raise here is I am seeing these messages very regularly in my log file.

     

    [iNFO    ] 16:50:22 rpcserver:204 Deluge Client connection made from: 127.0.0.1:42422
    [iNFO    ] 16:50:22 rpcserver:204 Deluge Client connection made from: 127.0.0.1:42421
    [iNFO    ] 16:50:22 rpcserver:224 Deluge client disconnected: Connection to the other side was lost in a non-clean fashion: Connection lost.
    [iNFO    ] 16:50:22 rpcserver:224 Deluge client disconnected: Connection to the other side was lost in a non-clean fashion: Connection lost.
    [iNFO    ] 16:50:23 rpcserver:204 Deluge Client connection made from: 127.0.0.1:42425
    [iNFO    ] 16:50:23 rpcserver:224 Deluge client disconnected: Connection to the other side was lost in a non-clean fashion: Connection lost.
    [WARNING ] 16:50:25 core:120 check interval loop starting
    [iNFO    ] 16:50:35 rpcserver:204 Deluge Client connection made from: 127.0.0.1:42453
    [iNFO    ] 16:50:35 rpcserver:224 Deluge client disconnected: Connection to the other side was lost in a non-clean fashion: Connection lost.
    [iNFO    ] 16:50:36 rpcserver:204 Deluge Client connection made from: 127.0.0.1:42456
    [iNFO    ] 16:50:36 rpcserver:224 Deluge client disconnected: Connection to the other side was lost in a non-clean fashion: Connection lost.
    [iNFO    ] 16:51:53 rpcserver:204 Deluge Client connection made from: 127.0.0.1:42620
    [iNFO    ] 16:51:53 rpcserver:204 Deluge Client connection made from: 127.0.0.1:42621
    [iNFO    ] 16:51:53 rpcserver:224 Deluge client disconnected: Connection to the other side was lost in a non-clean fashion: Connection lost.
    [iNFO    ] 16:51:53 rpcserver:224 Deluge client disconnected: Connection to the other side was lost in a non-clean fashion: Connection lost.
    [iNFO    ] 16:51:55 rpcserver:204 Deluge Client connection made from: 127.0.0.1:42624
    [iNFO    ] 16:51:55 rpcserver:224 Deluge client disconnected: Connection to the other side was lost in a non-clean fashion: Connection lost.
    [iNFO    ] 16:51:56 rpcserver:204 Deluge Client connection made from: 127.0.0.1:42625

     

    I am connecting from my Couchpotato and Sickrage Dockers via the daemon, but both test successfully and everything is working, just wondering if I should be seeing these messages.

     

    Thanks,

    Wob

     

    im not seeing anything like this in my logs, but i have no other applications connecting to deluge, so i would assume from that that its sickrage anr/or cp that is not correctly disconnecting from the api, not really much you can do about that to be honest as its most probably a bug in sickrage/cp.

  13. Madsonic Transcoding

     

    When I try to limit the bitrate for my iSub player, it just sends the original file instead of transcoding to a lower rate.

     

    I have the following error message.

    Failed to transcode SongName. Using original

     

    In the status page I also see this warning. "WARNING no transcoder found!"

     

    How can I install a transcoder?

     

    EDIT**

    I googled ffmpeg, and downloaded the linux static build from https://www.ffmpeg.org/download.html#build-linux

    copied it into my /config/transcode folder  (also went into the docker edit page, and added /usr/bin/ffmpeg, pointing it to my /config/transcode folder as well - not sure if needed to do that or not)

     

    then i ran the following in a terminal window: docker exec - it binhex-madsonic chmod -R 755 /usr/bin  (or you could do /config i guess)

    I next ran docker exec -it binhex-madsonic ./config/transcode/ffmpeg

     

    a whole little block of text generated by ffmpeg appeared, and now the status button in Madsonic says I which transcoder is installed.

     

    I tested it and my mp3s were transcoded down to 128 when using the iSub app on my phone!

     

    Now, I dont know if it will persist past a reboot. the transcode files will likely be there still, but i bet I will have to run the ./config/transcode/ffmpeg command again.

     

    hi stuart, the transcode pack from madsonic is included in the docker image, the transcoders can be found in /config/transcode/ and they should be picked up by madsonic automatically, so not sure why its not working for you, i will do some further investigation.

  14.  

    EDIT: Do you have plans for getting a transmissionVPN out? I have the delugeVPN but there is a bug in the app where if the docker is restarted (server rebooted fpr eg), the completed torrents in labeled and moved directories get corrupted. I have lost many completed files in the last few months and I scramble to delete the completed torrents whenever the server is rebooted. I have used transmission for many years prior which worked without issues at all.

     

    i wasnt aware of this bug, probably cos i dont leave stuff hanging about seeding for long lengths of time. i did start working on a transmissionvpn and have got some way through it but real life got in the way so it never got completed. if there is enough interest in this i could continue the work, i probably personally wouldn't use it so it would have to be something that a few people require, i dont really want to get into the position of creating a new docker image for a single person, too much work for very little use, maybe i should create a poll or something and ask people what they would like most.

     

    I use DelugeVPN and do not have this issue at all when i reboot the server

     

    thats good to know, thanks for that scottc

  15. I have needo/plex that I have been using for a very long time. Do you have suggestions on how I can migrate that library and settings to binhex/arch-plexpass (I have a paid acct)? The last time I tried copying over, the libraries/sync status were not imported. I am guessing it is either renaming a particular directory or expecting specific naming conventions. I can copy over the directory naming from needo/plex if it would help. TIA!

     

    ok obviously ive never attempted this, needo who? :-). my guess would be stop both docker containers, look at the directory structure for both and copy across the metadata from one to the other, then run newperms over the top to ensure there arent any permissions issues with the files, and finally start binhex plex and cross your fingers :-).

     

    EDIT: Do you have plans for getting a transmissionVPN out? I have the delugeVPN but there is a bug in the app where if the docker is restarted (server rebooted fpr eg), the completed torrents in labeled and moved directories get corrupted. I have lost many completed files in the last few months and I scramble to delete the completed torrents whenever the server is rebooted. I have used transmission for many years prior which worked without issues at all.

     

    i wasnt aware of this bug, probably cos i dont leave stuff hanging about seeding for long lengths of time. i did start working on a transmissionvpn and have got some way through it but real life got in the way so it never got completed. if there is enough interest in this i could continue the work, i probably personally wouldn't use it so it would have to be something that a few people require, i dont really want to get into the position of creating a new docker image for a single person, too much work for very little use, maybe i should create a poll or something and ask people what they would like most.

  16. Under advanced options it says you can provide a rage of IP addresses to give access to the daemon.  I have set mine to 192.168.1.10-192.168.1.200, which will cover everything for me.

     

    This didn't help.  Did I enter this wrong?

     

    david

     

    indeed it does have this option, unfortunately this doesn't work quite yet, i need to take another swing at this, right now you can only talk to the deluge daemon from another docker container running on unraid, not from an external host, the ip range variable was an attempt to allow this but it does require some work.

     

    btw can i ask what you mean by "deluge to work with the windows front end", bit confused by this, im assuming you have an application running on your windows machine (alternative windows gui for deluge?" and you want it to connect to the deluge daemon running inside the docker container yes?, not exactly sure why you need another gui as you have the web interface, but im sure you must have a good reason for it, im more curious than anything :-)

  17. I'm having problems with delugevpn not loading.  I have checked my password and verified that everything is correct.  I am getting the following error "AUTH: Received control message: AUTH_FAILED".  I have included my log below from just before it attempts to connect to PIA.  Can anyone help out with how to fix this issue?

    Mon Aug 31 21:47:54 2015 [Private Internet Access] Peer Connection Initiated with [AF_INET]109.201.152.239:1194
    
    2015-08-31 21:47:56,607 DEBG 'start' stdout output:
    Mon Aug 31 21:47:56 2015 AUTH: Received control message: AUTH_FAILED
    
    2015-08-31 21:47:56,608 DEBG 'start' stdout output:
    Mon Aug 31 21:47:56 2015 SIGTERM[soft,auth-failure] received, process exiting
    
    2015-08-31 21:47:56,609 DEBG fd 15 closed, stopped monitoring (stdout)>
    2015-08-31 21:47:56,609 DEBG fd 19 closed, stopped monitoring (stderr)>
    2015-08-31 21:47:56,609 INFO exited: start (exit status 0; expected)
    2015-08-31 21:47:56,610 DEBG received SIGCLD indicating a child quit

     

    try this, somebody had a wierd issue that got rersolved by changing their password, note the username and password is the one you use to login to the pia website, NOT the forum.

     

    Interestingly, once I changed my PIA password on their website to something different, it worked.  Perhaps it didn't like a character in my old password. 

     

  18. Do you have Deluge Drone factory watch completed folder of deluge as well? On sonarr forums, they seem to say you shouldnt have completed folders of deluge on the same folder as drone factory.  I asked why, but haven't gotten a reply yet.

     

    im afraid i dont actually use sonarr, i prefer to use sickrage.

  19. Actually, I did, 0.1, but still,there's no stop or finished.  I don't have the interface in front of me, I think it just says paused? 

     

    Does paused = stopped?  Meaning, next time it reboots, it won't be searching for the file, and file it as missing?  Otherwise, it will redownload again.

     

    take a look at my screenshot here, this automatically removes the torrent as soon as its finished downloading:-

     

    2qis02p.jpg

×
×
  • Create New...