• Login
  • Register
  • Login Register
    Login
    Username/Email:
    Password:
    Or login with a social network below
  • Forum
  • Website
  • GitHub
  • Status
  • Translation
  • Features
  • Team
  • Rules
  • Help
  • Feeds
User Links
  • Login
  • Register
  • Login Register
    Login
    Username/Email:
    Password:
    Or login with a social network below

    Useful Links Forum Website GitHub Status Translation Features Team Rules Help Feeds
    Jellyfin Forum Development Plugin Development JellySearch

     
    • 1 Vote(s) - 5 Average

    JellySearch

    A fast full-text search proxy for Jellyfin
    Hectik
    Offline

    Junior Member

    Posts: 18
    Threads: 2
    Joined: 2024 Jun
    Reputation: 0
    #27
    2024-10-05, 08:30 PM (This post was last modified: 2024-10-05, 08:32 PM by Hectik. Edited 1 time in total.)
    (2024-10-03, 12:25 AM)TheDreadPirate Wrote: Is jellysearch able to read jellyfin's DB file?

    Code:
    fail: JellySearch.Jobs.IndexJob[0]
          SQLite Error 14: 'unable to open database file'.
    I'm assuming it would need sufficient permissions to read it.

    It should have at least read permissions as per the documentation. 

    this is my docker compose 

    Code:
      jellysearch:
        container_name: jellysearch
        image: domistyle/jellysearch
        restart: unless-stopped
        volumes:
          - ./jellyfin-folder/config:/config:ro
        environment:
          PUID: "XXXX"
          PGID: "XXXX"
          TZ: "Europe/London"
          MEILI_MASTER_KEY: "NO"
          INDEX_CRON: "0 0 0/2 ? * * *"
          JELLYFIN_URL: "https://domain.co.uk"
          MEILI_URL: "http://meilisearch:7700"
          JELLYFIN_CONFIG_DIR: "./jellyfin-folder/config"
        networks:
          - jellyfin-net
          - nginx-proxy-manager

      meilisearch:
        image: getmeili/meilisearch:v1.9
        container_name: meilisearch
        restart: unless-stopped
        volumes:
          - ./jellyfin-folder/custom/meilisearch:/meili_data
        environment:
          MEILI_MASTER_KEY: "NO"
          PUID: "XXXX"
          PGID: "XXXX"
          TZ: "Europe/London"
        networks:
          - jellyfin-net

      jellyfin:
        image: lscr.io/linuxserver/jellyfin:latest
        container_name: jellyfin
        volumes:
          - ./jellyfin-folder/config:/config
          - ./jellyfin-folder/www:/usr/share/jellyfin/web
        environment:
          - PUID=XXXX
          - PGID=XXXX
          - TZ=Europe/London
          - JELLYFIN_PublishedServerUrl=https://domain.co.uk
        restart: unless-stopped
        networks:
          - jellyfin-net
          - nginx-proxy-manager

    I get the following from the jellysearch logs:

    Code:
    warn: Microsoft.AspNetCore.Hosting.Diagnostics[15]
          Overriding HTTP_PORTS '8080' and HTTPS_PORTS ''. Binding to values defined by URLS instead 'http://0.0.0.0:5000'.
    info: JellySearch.Jobs.IndexJob[0]
          Indexing items...
    info: Microsoft.Hosting.Lifetime[14]
          Now listening on: http://0.0.0.0:5000
    info: Microsoft.Hosting.Lifetime[0]
          Application started. Press Ctrl+C to shut down.
    info: Microsoft.Hosting.Lifetime[0]
          Hosting environment: Production
    info: Microsoft.Hosting.Lifetime[0]
          Content root path: /app
    fail: JellySearch.Jobs.IndexJob[0]
          SQLite Error 14: 'unable to open database file'.
    fail: JellySearch.Jobs.IndexJob[0]
            at Microsoft.Data.Sqlite.SqliteException.ThrowExceptionForRC(Int32 rc, sqlite3 db)
            at Microsoft.Data.Sqlite.SqliteConnectionInternal..ctor(SqliteConnectionStringBuilder connectionOptions, SqliteConnectionPool pool)
            at Microsoft.Data.Sqlite.SqliteConnectionPool.GetConnection()
            at Microsoft.Data.Sqlite.SqliteConnectionFactory.GetConnection(SqliteConnection outerConnection)
            at Microsoft.Data.Sqlite.SqliteConnection.Open()
            at System.Data.Common.DbConnection.OpenAsync(CancellationToken cancellationToken)
          --- End of stack trace from previous location ---
            at JellySearch.Jobs.IndexJob.Execute(IJobExecutionContext context) in /builds/DomiStyle/jellysearch/src/JellySearch/Jobs/IndexJob.cs:line 57
    info: JellySearch.Controllers.SearchController[0]
          No hits, not proxying
    info: JellySearch.Controllers.SearchController[0]
          No hits, not proxying
    Jellyfin 10.10.3 [LSIO Docker] | Ubuntu 24.04 LTS | i7-12700T | 16 GB RAM | 60TB Storage
    « Next Oldest | Next Newest »

    Users browsing this thread: 2 Guest(s)


    Messages In This Thread
    JellySearch - by keklol - 2024-08-16, 11:12 AM
    RE: JellySearch - by jennystreaming - 2024-08-18, 06:34 PM
    RE: JellySearch - by jennystreaming - 2024-08-18, 06:50 PM
    RE: JellySearch - by TheDMV - 2024-08-28, 10:46 AM
    RE: JellySearch - by Topomov - 2024-08-20, 09:54 AM
    RE: JellySearch - by thornbill - 2024-08-20, 12:31 PM
    RE: JellySearch - by Topomov - 2024-08-20, 05:54 PM
    RE: JellySearch - by xiNe - 2024-08-20, 07:18 PM
    RE: JellySearch - by twilco - 2025-01-08, 02:52 AM
    RE: JellySearch - by domi - 2024-08-21, 08:06 AM
    RE: JellySearch - by Topomov - 2024-08-21, 06:45 PM
    RE: JellySearch - by domi - 2024-08-22, 09:36 PM
    RE: JellySearch - by Nerokor - 2024-08-23, 12:54 AM
    RE: JellySearch - by Topomov - 2024-08-23, 02:55 PM
    RE: JellySearch - by vodka - 2024-08-23, 03:50 PM
    RE: JellySearch - by domi - 2024-08-24, 10:39 AM
    RE: JellySearch - by Nerokor - 2024-08-28, 12:49 AM
    RE: JellySearch - by keklol - 2024-08-27, 08:46 AM
    RE: JellySearch - by Topomov - 2024-08-27, 07:25 PM
    RE: JellySearch - by jennystreaming - 2024-10-06, 03:03 PM
    RE: JellySearch - by domi - 2024-10-07, 07:12 AM
    RE: JellySearch - by jennystreaming - 2024-10-07, 07:13 AM
    RE: JellySearch - by domi - 2024-08-28, 08:34 AM
    RE: JellySearch - by hov - 2024-09-17, 06:16 AM
    RE: JellySearch - by Zedniac - 2024-09-18, 05:43 AM
    RE: JellySearch - by Zedniac - 2024-09-18, 03:21 PM
    RE: JellySearch - by Hectik - 2024-09-30, 11:12 PM
    RE: JellySearch - by Hectik - 2024-10-02, 11:28 PM
    RE: JellySearch - by TheDreadPirate - 2024-10-03, 12:25 AM
    RE: JellySearch - by Hectik - 2024-10-05, 08:30 PM
    RE: JellySearch - by dontcryforme - 2024-10-03, 12:54 PM
    RE: JellySearch - by Hectik - 2024-10-05, 09:32 PM
    RE: JellySearch - by domi - 2024-10-06, 09:01 AM
    RE: JellySearch - by Hectik - 2024-10-06, 11:30 PM
    RE: JellySearch - by WheelFire - 2024-10-11, 02:02 PM
    RE: JellySearch - by domi - 2024-10-12, 08:47 AM
    RE: JellySearch - by WheelFire - 2024-10-12, 09:01 AM
    RE: JellySearch - by vbs - 2024-10-12, 11:35 AM
    RE: JellySearch - by need4swede - 2024-10-15, 04:48 PM
    RE: JellySearch - by Druidblack - 2024-11-17, 11:08 AM
    RE: JellySearch - by keklol - 2024-12-05, 03:49 AM
    RE: JellySearch - by kandykarter - 2024-12-11, 05:54 PM
    RE: JellySearch - by Druidblack - 2024-11-16, 06:44 PM
    RE: JellySearch - by JellyHunter - 2025-01-08, 06:31 PM
    RE: JellySearch - by thymon - 2025-01-13, 03:43 PM
    RE: JellySearch - by thymon - 2025-01-24, 08:34 AM
    RE: JellySearch - by domi - 2025-01-29, 09:51 AM
    RE: JellySearch - by nothingveryobvious - 2025-01-30, 05:06 AM
    RE: JellySearch - by kandykarter - 2025-01-31, 07:10 PM
    RE: JellySearch - by souvik29766 - 2025-04-01, 12:41 PM
    RE: JellySearch - by TheDreadPirate - 2025-04-01, 01:29 PM
    RE: JellySearch - by kandykarter - 2025-04-01, 05:31 PM
    RE: JellySearch - by keesfluitman_76238 - Yesterday, 03:35 PM

    • View a Printable Version
    • Subscribe to this thread
    Forum Jump:

    Home · Team · Help · Contact
    © Designed by D&D - Powered by MyBB
    L


    Jellyfin

    The Free Software Media System

    Linear Mode
    Threaded Mode