search problem in koha 3.10.4
Hi all I have installed koha 3.10.4 on ubuntu 12.04 and all ok. but i have faced problem search record, after cataloging record, try to search it ... no result i use zebra indexing and cronjob. in crontab i had add this lines # The cronjobs -- $KOHA_PATH is defined in /etc/environment, and gets set when $ */1 * * * * $KOHA_PATH/misc/migration_tools/rebuild_zebra.pl -b -a -z &> /d$ after that no result in search both biblio and authority. any sugg. thnks MOHAMED MEGAHED Chief Library at Ahram Canadian University Tel : +2 0100 22 97 96 2 Tel : +2 011 23 502 505
Greetings, This is clearly a development install, otherwise you wouldn't have touched the cron jobs at all. I am assuming you followed http://wiki.koha-community.org/wiki/Koha_on_ubuntu_-_git which is not intended for a production system, but rather a development system. So my first suggestion is to follow http://wiki.koha-community.org/wiki/Koha_on_ubuntu_-_packages instead. It does a good job of hiding complexities from the user. Including a whole set of nice commands: http://wiki.koha-community.org/wiki/Commands_provided_by_the_Debian_packages However, I could be wrong and you actually are trying to join the bug patch submitting side of things. In which case: --- BEGIN Your example --- # The cronjobs -- $KOHA_PATH is defined in /etc/environment, and gets set when $ */1 * * * * $KOHA_PATH/misc/migration_tools/rebuild_zebra.pl -b -a -z &> /d$ --- END Your example --- --- BEGIN actual --- # The cronjobs -- $KOHA_PATH is defined in /etc/environment, and gets set when this process runs. */5 * * * * $KOHA_PATH/misc/migration_tools/rebuild_zebra.pl -b -a -z &> /dev/null --- END actual --- I think you may have a problem using "/d$". Also, after your install did you run a full reindex? /home/{user name}/{koha directory}/misc/migration_tools/rebuild_zebra.pl -b -a -r -v Where {user name} and {koha directory} are your user name and most likely "kohaclone"? And to finish off, the most likely cause of everything: $ sudo service koha-zebra-daemon start It doesn't start automatically on reboot for me, so this may be your problem too. I've been meaning to improve the instructions that way. You can confirm it is running with: $ ps aux | grep zebra You should see more than just your grep line. GPML, Mark Tompsett
On Wed, Apr 17, 2013 at 8:42 AM, Mark Tompsett <mtompset@hotmail.com> wrote:
Greetings,
This is clearly a development install, otherwise you wouldn't have touched the cron jobs at all.
Mark, why you always suppose that everybody do packages installs? In my opinion most of current installs were done using tar.gz So the question of how to correctly setup cron jobs is a valid one. Regards, Bernardo
Hi Mohamed , try to rebuild your zebra index manually . cd $KOHA_PATH/misc/migration_tools/ then : perl rebuild_zebra.pl -b -a -z On Wed, Apr 17, 2013 at 10:36 AM, Mohamed Megahed <mr_megahed@hotmail.com>wrote:
Hi all I have installed koha 3.10.4 on ubuntu 12.04 and all ok. but i have faced problem search record, after cataloging record, try to search it ... no result i use zebra indexing and cronjob. in crontab i had add this lines
# The cronjobs -- $KOHA_PATH is defined in /etc/environment, and gets set when $ */1 * * * * $KOHA_PATH/misc/migration_tools/rebuild_zebra.pl -b -a -z &> /d$
after that no result in search both biblio and authority.
any sugg. thnks
MOHAMED MEGAHED Chief Library at Ahram Canadian University Tel : +2 0100 22 97 96 2 Tel : +2 011 23 502 505
_______________________________________________ Koha mailing list http://koha-community.org Koha@lists.katipo.co.nz http://lists.katipo.co.nz/mailman/listinfo/koha
-- *Karam Qubsi*
participants (4)
-
Bernardo Gonzalez Kriegel -
Karam Qubsi -
Mark Tompsett -
Mohamed Megahed