[Koha-patches] [PATCH] Bug 10670 - koha-common fails to start zebra without log permissions

Dobrica Pavlinusic dpavlin at rot13.org
Thu Nov 14 13:19:54 CET 2013


If koha-common is started when zebra log files are owned by root
it will fail to start without any useful message (since zebra can't
write errors in log files because it lacks permissions to do so).

This patch creates empty log files and ensure they have correct
permissions.

I can't pin-point why log files gets owned root, but I suspect it
has something to do with zebra crashing and logrotate, but this is
just theory. We have seen this behaviour since koha 3.1 every
few months, and every time it happends we have root owned logs and
crashed zebra so this patch will at least help sites which have
some kind of automatic koha-common start if it's not running.
---
 debian/scripts/koha-start-zebra |    7 +++++++
 1 files changed, 7 insertions(+), 0 deletions(-)

diff --git a/debian/scripts/koha-start-zebra b/debian/scripts/koha-start-zebra
index 222b0ef..f63ab42 100755
--- a/debian/scripts/koha-start-zebra
+++ b/debian/scripts/koha-start-zebra
@@ -77,6 +77,13 @@ start_zebra_instance()
 
     if is_enabled $instancename; then
         echo "Starting Zebra server for $instancename"
+        touch "/var/log/koha/$instancename/zebra-error.log" \
+            "/var/log/koha/$instancename/zebra.log" \
+            "/var/log/koha/$instancename/zebra-output.log"
+        chown "$instancename-koha:$instancename-koha" \
+            "/var/log/koha/$instancename/zebra-error.log" \
+            "/var/log/koha/$instancename/zebra.log" \
+            "/var/log/koha/$instancename/zebra-output.log"
         daemon \
             --name="$instancename-koha-zebra" \
             --errlog="/var/log/koha/$instancename/zebra-error.log" \
-- 
1.7.2.5



More information about the Koha-patches mailing list