2 Aug
2017
2 Aug
'17
11:19 a.m.
Thanks, Mark, for your suggestion. It sounds like it could very well be the source of my problem. I've followed your advice and will monitor to see if that solves the problem. Otherwise I came up with a quick-and-dirty, very non-elegant script that I've set up to run every five minutes as a cronjob:
#! /bin/sh
PATH=/usr/bin:/usr/sbin:/bin STR="zebra" restart=0
# See if koha/zebra running ps aux | grep $STR | grep -v grep | grep -v restart 2>&1 >/dev/null || restart=1
if [ $restart -eq 1 ]; then echo "Restarting koha/zebra" invoke-rc.d koha-common restart fi
-- View this message in context: http://koha.1045719.n5.nabble.com/Searching-capability-dies-every-few-days-Z... Sent from the Koha-general mailing list archive at Nabble.com.