ChuckPa / PlexDBRepair

Database repair utility for Plex Media Server databases
Other
829 stars 43 forks source link

Binhex , unable to stop from command line #150

Closed McTavish01 closed 5 months ago

McTavish01 commented 5 months ago

1 - 'stop' - (Not available. Stop manually.) Screenshot 2024-05-06 163913

ChuckPa commented 5 months ago

BINHEX doesn't have start-stop in the tool. There is no "stop.sh" You must stop the service manually inside the container.

    # BINHEX Plex image
    elif [ -e /etc/os-release ] &&  grep "IMAGE_ID=archlinux" /etc/os-release  1>/dev/null  && \
         [ -e /home/nobody/start.sh ] &&  grep PLEX_MEDIA /home/nobody/start.sh 1> /dev/null ; then

      PLEX_SQLITE="/usr/lib/plexmediaserver/Plex SQLite"
      AppSuppDir="/config"
      PID_FILE="$AppSuppDir/Plex Media Server/plexmediaserver.pid"
      DBDIR="$AppSuppDir/Plex Media Server/Plug-in Support/Databases"
      CacheDir="$AppSuppDir/Plex Media Server/Cache/PhotoTranscoder"
      LOGFILE="$DBDIR/DBRepair.log"
      LOG_TOOL="logger"

      HostType="BINHEX"
      return 0

    fi

If the image author wants to reach out to me and provide the necessary info, I will add it.