From 85e5070b8da2f3fd38fd7da1821aa6f25f9e9384 Mon Sep 17 00:00:00 2001 From: p4u1 Date: Fri, 23 May 2025 15:32:02 +0200 Subject: [PATCH] docs: Adds troubleshooting section for fulltextsearch --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.md b/README.md index 391c93c..15d619e 100644 --- a/README.md +++ b/README.md @@ -286,3 +286,11 @@ And you can populate the index manually and check if any errors occur: ``` abra app cmd app run_occ '"fulltextsearch:index"' ``` + +### Troubleshooting fulltextsearch + +The fulltextsearch plugin might be stuck with this error: "Index is already running". In that case the following command can get things runing again: + +``` +abra app run db /bin/sh -- -c 'echo "delete from oc_fulltextsearch_ticks;" | mariadb -u root -p$(cat /run/secrets/db_root_password) nextcloud' +```