Server Version#:1.4.2
Player Version#: All
Playback recently began to fail on all clients and across multiple versions of Plex Server Linux. The Sa,sung client returned “Can’t Reach Server”. “Failed to fetch play queue response.” After a lot of debug I found the root cause and fix which I used Claude Code to implement. I’ll summarize below:
- Root cause:
play_queue_items.idauto-increment sequence had reached2147483647(INT32_MAX). Every new play queue item insert would overflow Plex’s internal 32-bit integer, throwingstd::exceptionand returning an empty play queue. - Fix: Stopped Plex, cleared
play_queue_itemsandplay_queues(temporary session data), reset thesqlite_sequencefor both tables to 0, restarted Plex.
Hope this helps anyone facing the same problem.