Trying to use self hosted music brainz server #39
-
|
I am trying to use the new custom lidarr metadata source option. I have my own music brainz server stood up and i can get to the web ui at mylocal ip and port 5000. I can search and see valid results in music brainz server. I upgraded the lidarr docker image to ghcr.io/linuxserver-labs/prarr:lidarr-plugins-2.13.0.4661 i installed the plugins branch to https://github.com/TypNull/Tubifarry/tree/develop set the custom lidarr metadata source to the music brainz server http://mylocalip:5000 Getting API errors when search for artists in lidarr Fatal|LidarrErrorPipeline|Request Failed. GET /api/v1/search [v2.13.0.4661] NzbDrone.Core.MetadataSource.SkyHook.SkyHookException: Search for 'acdc' failed. Unable to communicate with LidarrAPI. Api|[GET] /api/v1/search?term=acdc: 503.ServiceUnavailable (355 ms) i thougt maybe the lidarr.db needed changed so i ran sudo docker exec -it lidarr2 sqlite3 /config/lidarr.db "INSERT INTO Config (Key, Value) VALUES ('metadatasource', 'http://mylocalip:5000/api/v0.4/');" Any idea what i may be missing to host my own lidarr metadata server ? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 7 replies
-
|
I'm not sure what's going on, but the 503 error suggests a service issue. Have you tried accessing the API endpoints manually? If you modify your database I can not really provide support as this could result in database corruption. Even if this is not the issue here. Modifying the database is not recommended and not necessary with Tubifarry. So first question did you try to hit the API endpoints manually? And did you restart after the plugin installation? |
Beta Was this translation helpful? Give feedback.
I'm not sure what's going on, but the 503 error suggests a service issue. Have you tried accessing the API endpoints manually?
Does the MusicBrainz Docker container expose these endpoints directly, or is the reverse proxy supposed to rewrite certain paths?
The
lidarr.dbisn’t related to this. It looks like a routing or availability problem, not a metadata formatting issue.If you modify your database I can not really provide support as this could result in database corruption. Even if this is not the issue here. Modifying the database is not recommended and not necessary with Tubifarry.
So first question did you try to hit the API endpoints manually? And did you restart after the plugin i…