docs/versioned_docs/version-v0.29.0/12-troubleshooting.md
This usually means that there's something wrong with the database setup (more concretely, it means that the database is not initialized). This can be caused by multiple problems:
DATA_DIR got wiped (or the backing storage dir changed). If you did this intentionally, restart the container so that it can re-initalize the database.DATA_DIR env var. This will result into the database getting set up in a different directory than the one used by the service.If you see this error in the logs of the chrome container, it's a benign error and you can safely ignore it. Whatever problems you're having, is unrelated to this error.
Check the logs of the container and this will usually tell you what's wrong. Common problems are:
OPENAI_API_KEY name resulting into logs saying something like "skipping inference as it's not configured".docker compose up after configuring open ai.Check the logs of the container and this will usually tell you what's wrong. Common problems are:
OLLAMA_BASE_URL name resulting into logs saying something like "skipping inference as it's not configured".docker compose up after configuring ollama.INFERENCE_TEXT_MODEL env variable, resulting into karakeep attempting to use gpt models with ollama which won't work.localhost as the OLLAMA_BASE_URL instead of the actual address of the ollama server. localhost points to the container itself, not the docker host. Check this stackoverflow answer to find how to correctly point to the docker host address instead.Check the logs of the container and this will usually tell you what's wrong. Common problems are:
BROWSER_WEB_URL env variable.Meilisearch is the database used by karakeep for searching in your bookmarks. The version used by karakeep is 1.13.3 and it is advised not to upgrade it without good reasons. If you do, you might see errors like Your database version (1.11.1) is incompatible with your current engine version (1.13.3). To migrate data between Meilisearch versions, please follow our guide on https://www.meilisearch.com/docs/learn/update_and_migration/updating..
Luckily we can easily workaround this:
/meili_data, erase/rename the folder called data.ms.Admin Settings > Background Jobs then click on Reindex All Bookmarks.If you run into issues, the official documentation can be found there.