@@ -, +, @@ upgrade ps ax | grep zebrasrv install: Error message from Zebra: 1011 (bad credentials) koha-restart-zebra instancename You will get a msg : Zebra does not appear to have been running for instancename Starting Zebra server for instancename ps ax | grep zebrasrv and see that pid has not changed, thus it is not restarted If there was a warning on about.pl it should now be gone --- debian/scripts/koha-functions.sh | 2 ++ 1 file changed, 2 insertions(+) --- a/debian/scripts/koha-functions.sh +++ a/debian/scripts/koha-functions.sh @@ -100,6 +100,7 @@ is_zebra_running() local instancename=$1 if daemon --name="$instancename-koha-zebra" \ + --pidfiles="/var/run/koha/$instancename/" \ --user="$instancename-koha.$instancename-koha" \ --running ; then return 0 @@ -113,6 +114,7 @@ is_indexer_running() local instancename=$1 if daemon --name="$instancename-koha-indexer" \ + --pidfiles="/var/run/koha/$instancename/" \ --user="$instancename-koha.$instancename-koha" \ --running ; then return 0 --