Replies: 2 comments
|
Kindly share your log files here as well: https://github.com/croneter/PlexKodiConnect/wiki/How-to-Report-A-Bug |
|
Here are logs: Here's what Gemini Plus said about them: Technical Diagnosis & Root CauseBased on a detailed examination of your crash logs, the crash occurs roughly 11 seconds after the PlexKodiConnect (PKC) metadata synchronization thread initializes. The system suffers a fatal The crash is driven by a volatile intersection of threading conflicts, heavy database lock contention, and network timeouts operating on a bleeding-edge experimental platform: 1. Concurrent Library Scanning Conflicts
2. Thread and Database Contention
3. Excessive Asset Cascades & Network Failures
4. Bleeding-Edge Platform Instability
Step-by-Step Recommended FixesTo break the login crash loop, follow these troubleshooting interventions in sequence: Step 1: Disable Native Startup Library UpdatesBecause PlexKodiConnect programmatically synchronizes your server media directly into the local database, Kodi's built-in startup scan is completely redundant and causes deadly lockups on Kodi 22.
nano /storage/.kodi/userdata/guisettings.xml
Locate the Step 2: Clean the Local Database Cache & Sequence the BootThe continuous stream of HTTP error 22 directory path failures indicates that your current database contains corrupted asset links. Re-indexing from a clean state prevents concurrent collisions.
systemctl stop kodi
rm /storage/.kodi/userdata/Database/MyVideos147.db[cite: 2]
rm /storage/.kodi/userdata/Database/MyMusic84.db[cite: 2]
systemctl start kodi
Step 3: Isolate or Disable Music Library SyncThe logs show that the crash heavily correlates with a dense processing loop of your music artists database layout (
Step 4: Downgrade to the Stable CoreELEC ReleaseIf the crash loop persists across clean database setups, it points to a deep framework bug native to the early Kodi 22 "Piers" beta codebase or its Python 3.14 integration.
|
Uh oh!
There was an error while loading. Please reload this page.
I set up PKC on my Ugoos AM9 Pro running CoreELEC nightly last night and everything seemed OK. Then this morning CoreELEC was crashing within a minute of startup. A clean install was stable, but once I restored my backup the crashes would start again. I downloaded all the log files from
/storage/.kodi/temp/and uploadedkodi.log,kodi.old.log, andkodi_crash.logto Gemini. It suggested the above fix, which stopped the crashes. Hope this helps anyone with the same issue.All reactions