Plex Not Showing TV Tuner that was previously working

Server Version#: 1.15.1.710
Player Version#:
Running plex from Docker container with a modified plexinc/pms-docker:plexpass container image. Below is the Docker file I used to modify the image.

FROM plexinc/pms-docker:plexpass

RUN apt-get update && \
   apt-get upgrade -y && \
   apt-get install -y python3 git build-essential libargtable2-dev autoconf \
   automake libtool libtool-bin ffmpeg libsdl1.2-dev libavutil-dev \
   libavformat-dev libavcodec-dev mkvtoolnix && \

cd /opt && \
git clone git://github.com/erikkaashoek/Comskip && \
cd Comskip && \
./autogen.sh && \
./configure && \
make && \

cd /opt && \
git clone https://github.com/ekim1337/PlexComskip.git && \
chmod -R 777 /opt/ /tmp/ /root/ && \
touch /var/log/PlexComskip.log && \
chmod 777 /var/log/PlexComskip.log

ADD ./PlexComskip.conf /opt/PlexComskip/PlexComskip.conf
ADD ./comskip.sh /opt/PlexComskip/comskip.sh
ADD ./comskip.ini /opt/PlexComskip/comskip.ini

RUN chmod 777 /opt/PlexComskip/comskip.sh

As the title states, I had a Tuner setup but it stopped working after the device was off the network for a while and the IP address changed. I removed it thinking that I could just re-add it but it doesn’t show up in any searches, and it doesn’t work to add it manually by IP. I read in this forum post that others have had similar issues but I didn’t see any resolution. I tried restarting the container a few times and once or twice Plex found the tuner, but it wouldn’t let me add it correctly because it get hung up on the postal code/Cable provider. It didn’t let me choose my own zip code, and when I found a nearby zipcode that worked, it errored when I choose my cable provider.

Base on the logs below I know it is seeing the Tuner but it’s acting like it already has it installed. Any help/advice is appreciated.

DVR:Grabber: tv.plex.grabbers.hdhomerun called the probe of http://192.168.1.108 a success.
HTTP requesting GET http://192.168.1.108/discover.json
HTTP 200 response from GET http://192.168.1.108/discover.json
HTTP requesting GET http://192.168.1.108/lineup_status.json
HTTP 200 response from GET http://192.168.1.108/lineup_status.json
DVR:Grabber: The device was already discovered at http://192.168.1.108, updating URI

My Server started having other issues that appeared to be database related, so I ended up spinning up a new docker container, moving my watch history and abandoning the rest of what was in the previous container. DVR is working so far after re-provisioning.

Thanks!!

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.