Jellyfin Forum
10.9.3 will not start - Printable Version

+- Jellyfin Forum (https://forum.jellyfin.org)
+-- Forum: Support (https://forum.jellyfin.org/f-support)
+--- Forum: Troubleshooting (https://forum.jellyfin.org/f-troubleshooting)
+--- Thread: 10.9.3 will not start (/t-10-9-3-will-not-start)



10.9.3 will not start - alanman87 - 2024-05-28

Cannot install or start version 10.9.3 due to the following error:


[13:08:59] [ERR] [17] Emby.Server.Implementations.Updates.InstallationManager: An error occurred while accessing the plugin manifest: https://raw.githubusercontent.com/crobibero/jellyfin-plugin-transcodekiller/master/manifest.json
System.Net.Http.HttpRequestException: Response status code does not indicate success: 404 (Not Found).
  at System.Net.Http.HttpResponseMessage.EnsureSuccessStatusCode()
  at System.Net.Http.Json.HttpClientJsonExtensions.<FromJsonAsyncCore>g__Core|12_0[TValue,TJsonOptions](HttpClient client, Task
1 responseTask, Boolean usingResponseHeadersRead, CancellationTokenSource linkedCTS, Func4 deserializeMethod, TJsonOptions jsonOptions, CancellationToken cancellationToken)
  at Emby.Server.Implementations.Updates.InstallationManager.GetPackages(String manifestName, String manifest, Boolean filterIncompatible, CancellationToken cancellationToken)



RE: 10.9.3 will not start - gnattu - 2024-05-28

jellyfin-plugin-transcodekiller

Remove this plugin's dll from your data folder.


RE: 10.9.3 will not start - TheDreadPirate - 2024-05-28

What OS is your server running? You can manually edit jellyfin's system.xml file to remove this repo.

The transcode killer plugin is part of the official plugin repo now, which is why Cody's repo is no longer available.


RE: 10.9.3 will not start - alanman87 - 2024-05-28

I've deleted the plugin DLLs this and restarted it but I still see this same error:


[13:25:32] [ERR] [10] Emby.Server.Implementations.Updates.InstallationManager: An error occurred while accessing the plugin manifest: https://raw.githubusercontent.com/crobibero/jellyfin-plugin-transcodekiller/master/manifest.json
System.Net.Http.HttpRequestException: Response status code does not indicate success: 404 (Not Found).
  at System.Net.Http.HttpResponseMessage.EnsureSuccessStatusCode()
  at System.Net.Http.Json.HttpClientJsonExtensions.<FromJsonAsyncCore>g__Core|12_0[TValue,TJsonOptions](HttpClient client, Task
1 responseTask, Boolean usingResponseHeadersRead, CancellationTokenSource linkedCTS, Func4 deserializeMethod, TJsonOptions jsonOptions, CancellationToken cancellationToken)
  at Emby.Server.Implementations.Updates.InstallationManager.GetPackages(String manifestName, String manifest, Boolean filterIncompatible, CancellationToken cancellationToken)


(2024-05-28, 05:22 PM)TheDreadPirate Wrote: What OS is your server running?  You can manually edit jellyfin's system.xml file to remove this repo.

The transcode killer plugin is part of the official plugin repo now, which is why Cody's repo is no longer available.

I'm running docker on ubuntu 22.04


RE: 10.9.3 will not start - TheDreadPirate - 2024-05-28

Stop the jellyfin container.  In container path /config/config (whatever host path that translates to), there is a system.xml file.  Remove the entry for the crobibero repo in "PluginRepositories".

Code:
  <PluginRepositories>
    <RepositoryInfo>
      <Name>Jellyfin Stable</Name>
      <Url>https://repo.jellyfin.org/files/plugin/manifest.json</Url>
      <Enabled>true</Enabled>
    </RepositoryInfo>
  </PluginRepositories>

Leave in the default repo, though.


RE: 10.9.3 will not start - alanman87 - 2024-05-28

(2024-05-28, 05:33 PM)TheDreadPirate Wrote: Stop the jellyfin container.  In container path /config/config (whatever host path that translates to), there is a system.xml file.  Remove the entry for the crobibero repo in "PluginRepositories".

Code:
  <PluginRepositories>
    <RepositoryInfo>
      <Name>Jellyfin Stable</Name>
      <Url>https://repo.jellyfin.org/files/plugin/manifest.json</Url>
      <Enabled>true</Enabled>
    </RepositoryInfo>
  </PluginRepositories>

Leave in the default repo, though.

I did that, it appears to start now but I can't seem to access it. Not sure if I'm experiencing a differnt issue now. The last items in the log look like this:

[13:39:58] [INF] [18] Emby.Server.Implementations.ScheduledTasks.TaskManager: Update Plugins Completed after 0 minute(s) and 0 seconds
[13:40:54] [INF] [7] Emby.Server.Implementations.ScheduledTasks.TaskManager: Webhook Item Added Notifier Completed after 0 minute(s) and 0 seconds
[13:41:24] [INF] [3] Emby.Server.Implementations.ScheduledTasks.TaskManager: Webhook Item Added Notifier Completed after 0 minute(s) and 0 seconds
[13:41:54] [INF] [7] Emby.Server.Implementations.ScheduledTasks.TaskManager: Webhook Item Added Notifier Completed after 0 minute(s) and 0 seconds
[13:42:24] [INF] [3] Emby.Server.Implementations.ScheduledTasks.TaskManager: Webhook Item Added Notifier Completed after 0 minute(s) and 0 seconds


I can't access the web UI at all.


RE: 10.9.3 will not start - TheDreadPirate - 2024-05-28

Can you share the full jellyfin log via pastebin?


RE: 10.9.3 will not start - alanman87 - 2024-05-28

My apologies,

The 2nd issue was unrelated to Jellyfin and I resolved it by updating traefik.

Thank you for your time and patience.