SovereignX

Members
  • Posts

    4
  • Joined

  • Last visited

Recent Profile Visitors

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

SovereignX's Achievements

Noob

Noob (1/14)

1

Reputation

  1. I solved this issue with my linuxserver version of Plex. I assume it would fix this version as well. From what I could see when I spun up a different instance of Plex is that the com.plexapp.plugins.library.db database was missing the metadata_agent_providers table. The freshly built instance did have this table, with 5 records. To resolve, I stopped the container, created a backup of the database file and then executed the following commands in sqlite3 to create the table and records. I am not responsible for any damage this will cause, but I have been able to update my docker from 1.32.0 to the latest version. I don't know if there will be any long term impacts to this manual correction. If you don't know how to open an SQLite3 database or where to find this database, Google is your friend. BEGIN TRANSACTION; CREATE TABLE IF NOT EXISTS "metadata_agent_providers" ( "id" INTEGER NOT NULL, "identifier" varchar(255), "title" varchar(255), "uri" varchar(255), "agent_type" integer, "metadata_types" varchar(255), "online" boolean, "created_at" dt_integer(8) NOT NULL, "updated_at" dt_integer(8) NOT NULL, "extra_data" varchar(255), PRIMARY KEY("id" AUTOINCREMENT) ); INSERT INTO "metadata_agent_providers" VALUES (1,'tv.plex.agents.movie','Plex Movie','provider://tv.plex.provider.metadata',0,'1',1,1687738830,1687738830,''); INSERT INTO "metadata_agent_providers" VALUES (2,'tv.plex.agents.series','Plex Series','provider://tv.plex.provider.metadata',0,'2,3,4',1,1687738830,1687738830,''); INSERT INTO "metadata_agent_providers" VALUES (3,'tv.plex.agents.music','Plex Music','provider://tv.plex.provider.metadata',0,'8,9,10',1,1687738830,1687738830,''); INSERT INTO "metadata_agent_providers" VALUES (4,'org.musicbrainz.agents.music','MusicBrainz','provider://tv.plex.provider.metadata',0,'8,9,10',1,1687738830,1687738830,''); INSERT INTO "metadata_agent_providers" VALUES (5,'tv.plex.agents.none','Plex Personal Media','',0,'1,2,3,4,8,9,10,20,21,22',1,1687738830,1687738830,''); CREATE UNIQUE INDEX IF NOT EXISTS "index_metadata_agent_providers_on_identifier" ON "metadata_agent_providers" ( 'identifier' ); CREATE INDEX IF NOT EXISTS "index_metadata_agent_providers_on_uri" ON "metadata_agent_providers" ( 'uri' ); CREATE INDEX IF NOT EXISTS "index_metadata_agent_providers_on_online" ON "metadata_agent_providers" ( 'online' ); COMMIT;
  2. OMG, thank you. I moved my Plex to new hardware and transcoding was not working. This solved the issue.
  3. I'm on 6.9.2. I upgraded my binhex version of the Plex docker last night. Since then my libraries have been missing. I was seeing the same errors you listed above. I have rolled back to binhex/arch-plexpass:1.26.2.5797-1-01 but now the UI does not come up. Nor do any of the other 1.26 versions so far.
  4. Hi - My Plex docker is starting but no services appear to be running on it. The logs show the following: 2022-06-03 10:56:20.877297 [info] Host is running unRAID 2022-06-03 10:56:20.902215 [info] System information Linux Tower 5.10.28-Unraid #1 SMP Wed Apr 7 08:23:18 PDT 2021 x86_64 GNU/Linux 2022-06-03 10:56:20.934466 [info] OS_ARCH defined as 'x86-64' 2022-06-03 10:56:20.968476 [info] PUID defined as '99' 2022-06-03 10:56:21.004930 [info] PGID defined as '100' 2022-06-03 10:56:21.252220 [info] UMASK defined as '000' 2022-06-03 10:56:21.284188 [info] Permissions already set for '/config' 2022-06-03 10:56:21.317002 [info] Deleting files in /tmp (non recursive)... 2022-06-03 10:56:21.353675 [info] TRANS_DIR defined as '/config/transcode' 2022-06-03 10:56:21.390174 [info] Starting Supervisor... 2022-06-03 10:56:21,585 INFO Included extra file "/etc/supervisor/conf.d/plexmediaserver.conf" during parsing 2022-06-03 10:56:21,585 INFO Set uid to user 0 succeeded 2022-06-03 10:56:21,587 INFO supervisord started with pid 7 2022-06-03 10:56:22,590 INFO spawned: 'plexmediaserver' with pid 64 2022-06-03 10:56:22,593 INFO spawned: 'shutdown-script' with pid 65 2022-06-03 10:56:22,594 INFO reaped unknown pid 8 (exit status 0) 2022-06-03 10:56:23,595 INFO success: plexmediaserver entered RUNNING state, process has stayed up for > than 1 seconds (startsecs) 2022-06-03 10:56:23,596 INFO success: shutdown-script entered RUNNING state, process has stayed up for > than 0 seconds (startsecs) 2022-06-03 10:56:38,962 DEBG 'plexmediaserver' stdout output: Critical: libusb_init failed I updated the docker yesterday and it is running the latest version as of now. I can see it is running the shutdown script, but I don't see why. edit: Plex was running but I could not see any libraries. I was getting the following exceptions: Thread: Uncaught exception running async task which was spawned by thread 0x14a256d5bb38: std::bad_cast and Got exception from request handler: std::bad_cast Saw the following post: I tried rolling back to 1.26, but now the UI does not come up at all.