Hi, Hope you all are pretty fine. I would like to ask if there is a way of running Zebra server automatically during the main server start-up. I cant find the records which added into the system until I run manually zebra server, I use the following command to run the zebra server sudo -u kohaadmin zebrasrv -f /etc/koha/koha-conf.xml. I use Ubuntu server 9.10 as my platform. Regards, Bariki G. Kamara ---------------------- CONFIDENTIALITY NOTICE -------------------------------- PLEASE CONSIDER THE ENVIRONMENT BEFORE PRINTING THIS E-MAIL This email is intended only for the person to whom it is addressed and may contain confidential information and may be legally privileged. If you are not the intended recipient, you are notified that you may not use, distribute or copy this document in any manner whatsoever. Kindly also notify the sender by email and/or delete this e-mail. Any views or opinions expressed in this e-mail are those of the sender and do not necessarily coincide with those of the Open University of Tanzania. --------------------THE OPEN UNIVERSITY OF TANZANIA--------------------------
You should run zebra & zebraqueue as ubuntu service. Step to running zebra as sevice and auto update when updating biblio/authority record: $ sudo ln -s /usr/share/koha/bin/koha-zebra-ctl.sh /etc/init.d/koha-zebra-daemon $ sudo update-rc.d koha-zebra-daemon defaults $ sudo ln -s /usr/share/koha/bin/koha-zebraqueue-ctl.sh /etc/init.d/koha-zebraqueue-daemon $ sudo update-rc.d koha-zebraqueue-daemon defaults See the file: INSTALL.ubuntu Sincely, Suyadi Muhammadiyah University of Surakarta Solo, Jateng, Indonesia bariki.kamara wrote:
Hi,
Hope you all are pretty fine.
I would like to ask if there is a way of running Zebra server automatically during the main server start-up. I cant find the records which added into the system until I run manually zebra server, I use the following command to run the zebra server sudo -u kohaadmin zebrasrv -f /etc/koha/koha-conf.xml. I use Ubuntu server 9.10 as my platform.
Regards, Bariki G. Kamara
---------------------- CONFIDENTIALITY NOTICE --------------------------------
PLEASE CONSIDER THE ENVIRONMENT BEFORE PRINTING THIS E-MAIL
This email is intended only for the person to whom it is addressed and may contain confidential information and may be legally privileged. If you are not the intended recipient, you are notified that you may not use, distribute or copy this document in any manner whatsoever. Kindly also notify the sender by email and/or delete this e-mail. Any views or opinions expressed in this e-mail are those of the sender and do not necessarily coincide with those of the Open University of Tanzania.
--------------------THE OPEN UNIVERSITY OF TANZANIA--------------------------
_______________________________________________ Koha mailing list Koha@lists.katipo.co.nz http://lists.katipo.co.nz/mailman/listinfo/koha
-- View this message in context: http://old.nabble.com/Running-Zebra-Server-Automatically-tp29031359p29031580... Sent from the Koha - Discuss mailing list archive at Nabble.com.
Dear Suyadi, Thanks for your effort, but this procedures that you gave me had already done during the installation stages. Regards, Kamara
You should run zebra & zebraqueue as ubuntu service. Step to running zebra as sevice and auto update when updating biblio/authority record: $ sudo ln -s /usr/share/koha/bin/koha-zebra-ctl.sh /etc/init.d/koha-zebra-daemon $ sudo update-rc.d koha-zebra-daemon defaults $ sudo ln -s /usr/share/koha/bin/koha-zebraqueue-ctl.sh /etc/init.d/koha-zebraqueue-daemon $ sudo update-rc.d koha-zebraqueue-daemon defaults
See the file: INSTALL.ubuntu
Sincely, Suyadi Muhammadiyah University of Surakarta Solo, Jateng, Indonesia
bariki.kamara wrote:
Hi,
Hope you all are pretty fine.
I would like to ask if there is a way of running Zebra server automatically during the main server start-up. I cant find the records which added into the system until I run manually zebra server, I use the following command to run the zebra server sudo -u kohaadmin zebrasrv -f /etc/koha/koha-conf.xml. I use Ubuntu server 9.10 as my platform.
Regards, Bariki G. Kamara
---------------------- CONFIDENTIALITY NOTICE --------------------------------
PLEASE CONSIDER THE ENVIRONMENT BEFORE PRINTING THIS E-MAIL
This email is intended only for the person to whom it is addressed and may contain confidential information and may be legally privileged. If you are not the intended recipient, you are notified that you may not use, distribute or copy this document in any manner whatsoever. Kindly also notify the sender by email and/or delete this e-mail. Any views or opinions expressed in this e-mail are those of the sender and do not necessarily coincide with those of the Open University of Tanzania.
--------------------THE OPEN UNIVERSITY OF TANZANIA--------------------------
_______________________________________________ Koha mailing list Koha@lists.katipo.co.nz http://lists.katipo.co.nz/mailman/listinfo/koha
-- View this message in context: http://old.nabble.com/Running-Zebra-Server-Automatically-tp29031359p29031580... Sent from the Koha - Discuss mailing list archive at Nabble.com.
_______________________________________________ Koha mailing list Koha@lists.katipo.co.nz http://lists.katipo.co.nz/mailman/listinfo/koha
---------------------- CONFIDENTIALITY NOTICE -------------------------------- PLEASE CONSIDER THE ENVIRONMENT BEFORE PRINTING THIS E-MAIL This email is intended only for the person to whom it is addressed and may contain confidential information and may be legally privileged. If you are not the intended recipient, you are notified that you may not use, distribute or copy this document in any manner whatsoever. Kindly also notify the sender by email and/or delete this e-mail. Any views or opinions expressed in this e-mail are those of the sender and do not necessarily coincide with those of the Open University of Tanzania. --------------------THE OPEN UNIVERSITY OF TANZANIA--------------------------
Would you have made a Koha system user? If not, run the command: $ sudo adduser koha Then, make sure the owner and group /usr/share/koha/var is koha Alternatively, (not recomended) Edit file /usr/share/koha/bin/koha-zebra-ctl.sh & /usr/share/koha/bin/koha-zebraqueue-ctl.sh then replace: #!/bin/bash USER=koha GROUP=koha with: #!/bin/bash USER=root GROUP=root The principle is /usr/share/koha/var is writable by the user and group defined in /usr/share/koha/bin/koha-zebra-ctl.sh & /usr/share/koha/bin/koha-zebraqueue-ctl.sh bariki.kamara wrote:
Dear Suyadi,
Thanks for your effort, but this procedures that you gave me had already done during the installation stages.
Regards, Kamara
You should run zebra & zebraqueue as ubuntu service. Step to running zebra as sevice and auto update when updating biblio/authority record: $ sudo ln -s /usr/share/koha/bin/koha-zebra-ctl.sh /etc/init.d/koha-zebra-daemon $ sudo update-rc.d koha-zebra-daemon defaults $ sudo ln -s /usr/share/koha/bin/koha-zebraqueue-ctl.sh /etc/init.d/koha-zebraqueue-daemon $ sudo update-rc.d koha-zebraqueue-daemon defaults
See the file: INSTALL.ubuntu
Sincely, Suyadi Muhammadiyah University of Surakarta Solo, Jateng, Indonesia
bariki.kamara wrote:
Hi,
Hope you all are pretty fine.
I would like to ask if there is a way of running Zebra server automatically during the main server start-up. I cant find the records which added into the system until I run manually zebra server, I use the following command to run the zebra server sudo -u kohaadmin zebrasrv -f /etc/koha/koha-conf.xml. I use Ubuntu server 9.10 as my platform.
Regards, Bariki G. Kamara
---------------------- CONFIDENTIALITY NOTICE --------------------------------
PLEASE CONSIDER THE ENVIRONMENT BEFORE PRINTING THIS E-MAIL
This email is intended only for the person to whom it is addressed and may contain confidential information and may be legally privileged. If you are not the intended recipient, you are notified that you may not use, distribute or copy this document in any manner whatsoever. Kindly also notify the sender by email and/or delete this e-mail. Any views or opinions expressed in this e-mail are those of the sender and do not necessarily coincide with those of the Open University of Tanzania.
--------------------THE OPEN UNIVERSITY OF TANZANIA--------------------------
_______________________________________________ Koha mailing list Koha@lists.katipo.co.nz http://lists.katipo.co.nz/mailman/listinfo/koha
-- View this message in context: http://old.nabble.com/Running-Zebra-Server-Automatically-tp29031359p29031580... Sent from the Koha - Discuss mailing list archive at Nabble.com.
_______________________________________________ Koha mailing list Koha@lists.katipo.co.nz http://lists.katipo.co.nz/mailman/listinfo/koha
---------------------- CONFIDENTIALITY NOTICE --------------------------------
PLEASE CONSIDER THE ENVIRONMENT BEFORE PRINTING THIS E-MAIL
This email is intended only for the person to whom it is addressed and may contain confidential information and may be legally privileged. If you are not the intended recipient, you are notified that you may not use, distribute or copy this document in any manner whatsoever. Kindly also notify the sender by email and/or delete this e-mail. Any views or opinions expressed in this e-mail are those of the sender and do not necessarily coincide with those of the Open University of Tanzania.
--------------------THE OPEN UNIVERSITY OF TANZANIA--------------------------
_______________________________________________ Koha mailing list Koha@lists.katipo.co.nz http://lists.katipo.co.nz/mailman/listinfo/koha
-- View this message in context: http://old.nabble.com/Running-Zebra-Server-Automatically-tp29031359p29032090... Sent from the Koha - Discuss mailing list archive at Nabble.com.
Hi, I've a few questions: 1) Which version of koha? 2) Is this a fresh install of both koha and ubuntu? 3) Did the package "daemon" install? thanks, ramon. On 30/06/2010, at 4:36 PM, Suyadi wrote:
Would you have made a Koha system user? If not, run the command: $ sudo adduser koha Then, make sure the owner and group /usr/share/koha/var is koha
Alternatively, (not recomended) Edit file /usr/share/koha/bin/koha-zebra-ctl.sh & /usr/share/koha/bin/koha-zebraqueue-ctl.sh then replace: #!/bin/bash USER=koha GROUP=koha
with: #!/bin/bash USER=root GROUP=root
The principle is /usr/share/koha/var is writable by the user and group defined in /usr/share/koha/bin/koha-zebra-ctl.sh & /usr/share/koha/bin/koha-zebraqueue-ctl.sh
bariki.kamara wrote:
Dear Suyadi,
Thanks for your effort, but this procedures that you gave me had already done during the installation stages.
Regards, Kamara
You should run zebra & zebraqueue as ubuntu service. Step to running zebra as sevice and auto update when updating biblio/authority record: $ sudo ln -s /usr/share/koha/bin/koha-zebra-ctl.sh /etc/init.d/koha-zebra-daemon $ sudo update-rc.d koha-zebra-daemon defaults $ sudo ln -s /usr/share/koha/bin/koha-zebraqueue-ctl.sh /etc/init.d/koha-zebraqueue-daemon $ sudo update-rc.d koha-zebraqueue-daemon defaults
See the file: INSTALL.ubuntu
Sincely, Suyadi Muhammadiyah University of Surakarta Solo, Jateng, Indonesia
bariki.kamara wrote:
Hi,
Hope you all are pretty fine.
I would like to ask if there is a way of running Zebra server automatically during the main server start-up. I cant find the records which added into the system until I run manually zebra server, I use the following command to run the zebra server sudo -u kohaadmin zebrasrv -f /etc/koha/koha-conf.xml. I use Ubuntu server 9.10 as my platform.
Regards, Bariki G. Kamara
---------------------- CONFIDENTIALITY NOTICE --------------------------------
PLEASE CONSIDER THE ENVIRONMENT BEFORE PRINTING THIS E-MAIL
This email is intended only for the person to whom it is addressed and may contain confidential information and may be legally privileged. If you are not the intended recipient, you are notified that you may not use, distribute or copy this document in any manner whatsoever. Kindly also notify the sender by email and/or delete this e-mail. Any views or opinions expressed in this e-mail are those of the sender and do not necessarily coincide with those of the Open University of Tanzania.
--------------------THE OPEN UNIVERSITY OF TANZANIA--------------------------
_______________________________________________ Koha mailing list Koha@lists.katipo.co.nz http://lists.katipo.co.nz/mailman/listinfo/koha
-- View this message in context: http://old.nabble.com/Running-Zebra-Server-Automatically-tp29031359p29031580... Sent from the Koha - Discuss mailing list archive at Nabble.com.
_______________________________________________ Koha mailing list Koha@lists.katipo.co.nz http://lists.katipo.co.nz/mailman/listinfo/koha
---------------------- CONFIDENTIALITY NOTICE --------------------------------
PLEASE CONSIDER THE ENVIRONMENT BEFORE PRINTING THIS E-MAIL
This email is intended only for the person to whom it is addressed and may contain confidential information and may be legally privileged. If you are not the intended recipient, you are notified that you may not use, distribute or copy this document in any manner whatsoever. Kindly also notify the sender by email and/or delete this e-mail. Any views or opinions expressed in this e-mail are those of the sender and do not necessarily coincide with those of the Open University of Tanzania.
--------------------THE OPEN UNIVERSITY OF TANZANIA--------------------------
_______________________________________________ Koha mailing list Koha@lists.katipo.co.nz http://lists.katipo.co.nz/mailman/listinfo/koha
-- View this message in context: http://old.nabble.com/Running-Zebra-Server-Automatically-tp29031359p29032090... Sent from the Koha - Discuss mailing list archive at Nabble.com.
_______________________________________________ Koha mailing list Koha@lists.katipo.co.nz http://lists.katipo.co.nz/mailman/listinfo/koha
Dear Ramon,
Hi, I've a few questions: 1) Which version of koha? I installed koha ver 3.00.00 then I upgraded to koha ver 3.00.05.
2) Is this a fresh install of both koha and ubuntu? Yes this is a fresh install of both of them.
3) Did the package "daemon" install? Honestly Am not sure, how can you check if the package is installed?
thanks, ramon.
Regards, Kamara.
On 30/06/2010, at 4:36 PM, Suyadi wrote:
Would you have made a Koha system user? If not, run the command: $ sudo adduser koha Then, make sure the owner and group /usr/share/koha/var is koha
Alternatively, (not recomended) Edit file /usr/share/koha/bin/koha-zebra-ctl.sh & /usr/share/koha/bin/koha-zebraqueue-ctl.sh then replace: #!/bin/bash USER=koha GROUP=koha
with: #!/bin/bash USER=root GROUP=root
The principle is /usr/share/koha/var is writable by the user and group defined in /usr/share/koha/bin/koha-zebra-ctl.sh & /usr/share/koha/bin/koha-zebraqueue-ctl.sh
bariki.kamara wrote:
Dear Suyadi,
Thanks for your effort, but this procedures that you gave me had already done during the installation stages.
Regards, Kamara
You should run zebra & zebraqueue as ubuntu service. Step to running zebra as sevice and auto update when updating biblio/authority record: $ sudo ln -s /usr/share/koha/bin/koha-zebra-ctl.sh /etc/init.d/koha-zebra-daemon $ sudo update-rc.d koha-zebra-daemon defaults $ sudo ln -s /usr/share/koha/bin/koha-zebraqueue-ctl.sh /etc/init.d/koha-zebraqueue-daemon $ sudo update-rc.d koha-zebraqueue-daemon defaults
See the file: INSTALL.ubuntu
Sincely, Suyadi Muhammadiyah University of Surakarta Solo, Jateng, Indonesia
bariki.kamara wrote:
Hi,
Hope you all are pretty fine.
I would like to ask if there is a way of running Zebra server automatically during the main server start-up. I cant find the records which added into the system until I run manually zebra server, I use the following command to run the zebra server sudo -u kohaadmin zebrasrv -f /etc/koha/koha-conf.xml. I use Ubuntu server 9.10 as my platform.
Regards, Bariki G. Kamara
---------------------- CONFIDENTIALITY NOTICE --------------------------------
PLEASE CONSIDER THE ENVIRONMENT BEFORE PRINTING THIS E-MAIL
This email is intended only for the person to whom it is addressed and may contain confidential information and may be legally privileged. If you are not the intended recipient, you are notified that you may not use, distribute or copy this document in any manner whatsoever. Kindly also notify the sender by email and/or delete this e-mail. Any views or opinions expressed in this e-mail are those of the sender and do not necessarily coincide with those of the Open University of Tanzania.
--------------------THE OPEN UNIVERSITY OF TANZANIA--------------------------
_______________________________________________ Koha mailing list Koha@lists.katipo.co.nz http://lists.katipo.co.nz/mailman/listinfo/koha
-- View this message in context: http://old.nabble.com/Running-Zebra-Server-Automatically-tp29031359p29031580... Sent from the Koha - Discuss mailing list archive at Nabble.com.
_______________________________________________ Koha mailing list Koha@lists.katipo.co.nz http://lists.katipo.co.nz/mailman/listinfo/koha
---------------------- CONFIDENTIALITY NOTICE --------------------------------
PLEASE CONSIDER THE ENVIRONMENT BEFORE PRINTING THIS E-MAIL
This email is intended only for the person to whom it is addressed and may contain confidential information and may be legally privileged. If you are not the intended recipient, you are notified that you may not use, distribute or copy this document in any manner whatsoever. Kindly also notify the sender by email and/or delete this e-mail. Any views or opinions expressed in this e-mail are those of the sender and do not necessarily coincide with those of the Open University of Tanzania.
--------------------THE OPEN UNIVERSITY OF TANZANIA--------------------------
_______________________________________________ Koha mailing list Koha@lists.katipo.co.nz http://lists.katipo.co.nz/mailman/listinfo/koha
-- View this message in context: http://old.nabble.com/Running-Zebra-Server-Automatically-tp29031359p29032090... Sent from the Koha - Discuss mailing list archive at Nabble.com.
_______________________________________________ Koha mailing list Koha@lists.katipo.co.nz http://lists.katipo.co.nz/mailman/listinfo/koha
_______________________________________________ Koha mailing list Koha@lists.katipo.co.nz http://lists.katipo.co.nz/mailman/listinfo/koha
---------------------- CONFIDENTIALITY NOTICE -------------------------------- PLEASE CONSIDER THE ENVIRONMENT BEFORE PRINTING THIS E-MAIL This email is intended only for the person to whom it is addressed and may contain confidential information and may be legally privileged. If you are not the intended recipient, you are notified that you may not use, distribute or copy this document in any manner whatsoever. Kindly also notify the sender by email and/or delete this e-mail. Any views or opinions expressed in this e-mail are those of the sender and do not necessarily coincide with those of the Open University of Tanzania. --------------------THE OPEN UNIVERSITY OF TANZANIA--------------------------
On Wed, Jun 30, 2010 at 6:51 AM, <bariki.kamara@out.ac.tz> wrote:
Dear Ramon,
Hi, I've a few questions: 1) Which version of koha? I installed koha ver 3.00.00 then I upgraded to koha ver 3.00.05.
2) Is this a fresh install of both koha and ubuntu? Yes this is a fresh install of both of them.
3) Did the package "daemon" install? Honestly Am not sure, how can you check if the package is installed?
Have you carefully read INSTALL.ubuntu included in the tarball? It is also available in the most current form here: http://git.koha-community.org/gitweb/?p=koha.git;a=blob;f=INSTALL.ubuntu;h=7... Kind Regards, Chris
Ok, I have an actual suggestion now. Could you check the permissions on /var/log/koha? (I have a note in the logs of my recently installed test box about permission failure, and if I change the owner and group of that directory and the logs to koha:koha everything starts up properly.) Maybe that will help. -ramon. On 30/06/2010, at 4:36 PM, Suyadi wrote:
Would you have made a Koha system user? If not, run the command: $ sudo adduser koha Then, make sure the owner and group /usr/share/koha/var is koha
Alternatively, (not recomended) Edit file /usr/share/koha/bin/koha-zebra-ctl.sh & /usr/share/koha/bin/koha-zebraqueue-ctl.sh then replace: #!/bin/bash USER=koha GROUP=koha
with: #!/bin/bash USER=root GROUP=root
The principle is /usr/share/koha/var is writable by the user and group defined in /usr/share/koha/bin/koha-zebra-ctl.sh & /usr/share/koha/bin/koha-zebraqueue-ctl.sh
bariki.kamara wrote:
Dear Suyadi,
Thanks for your effort, but this procedures that you gave me had already done during the installation stages.
Regards, Kamara
You should run zebra & zebraqueue as ubuntu service. Step to running zebra as sevice and auto update when updating biblio/authority record: $ sudo ln -s /usr/share/koha/bin/koha-zebra-ctl.sh /etc/init.d/koha-zebra-daemon $ sudo update-rc.d koha-zebra-daemon defaults $ sudo ln -s /usr/share/koha/bin/koha-zebraqueue-ctl.sh /etc/init.d/koha-zebraqueue-daemon $ sudo update-rc.d koha-zebraqueue-daemon defaults
See the file: INSTALL.ubuntu
Sincely, Suyadi Muhammadiyah University of Surakarta Solo, Jateng, Indonesia
bariki.kamara wrote:
Hi,
Hope you all are pretty fine.
I would like to ask if there is a way of running Zebra server automatically during the main server start-up. I cant find the records which added into the system until I run manually zebra server, I use the following command to run the zebra server sudo -u kohaadmin zebrasrv -f /etc/koha/koha-conf.xml. I use Ubuntu server 9.10 as my platform.
Regards, Bariki G. Kamara
---------------------- CONFIDENTIALITY NOTICE --------------------------------
PLEASE CONSIDER THE ENVIRONMENT BEFORE PRINTING THIS E-MAIL
This email is intended only for the person to whom it is addressed and may contain confidential information and may be legally privileged. If you are not the intended recipient, you are notified that you may not use, distribute or copy this document in any manner whatsoever. Kindly also notify the sender by email and/or delete this e-mail. Any views or opinions expressed in this e-mail are those of the sender and do not necessarily coincide with those of the Open University of Tanzania.
--------------------THE OPEN UNIVERSITY OF TANZANIA--------------------------
_______________________________________________ Koha mailing list Koha@lists.katipo.co.nz http://lists.katipo.co.nz/mailman/listinfo/koha
-- View this message in context: http://old.nabble.com/Running-Zebra-Server-Automatically-tp29031359p29031580... Sent from the Koha - Discuss mailing list archive at Nabble.com.
_______________________________________________ Koha mailing list Koha@lists.katipo.co.nz http://lists.katipo.co.nz/mailman/listinfo/koha
---------------------- CONFIDENTIALITY NOTICE --------------------------------
PLEASE CONSIDER THE ENVIRONMENT BEFORE PRINTING THIS E-MAIL
This email is intended only for the person to whom it is addressed and may contain confidential information and may be legally privileged. If you are not the intended recipient, you are notified that you may not use, distribute or copy this document in any manner whatsoever. Kindly also notify the sender by email and/or delete this e-mail. Any views or opinions expressed in this e-mail are those of the sender and do not necessarily coincide with those of the Open University of Tanzania.
--------------------THE OPEN UNIVERSITY OF TANZANIA--------------------------
_______________________________________________ Koha mailing list Koha@lists.katipo.co.nz http://lists.katipo.co.nz/mailman/listinfo/koha
-- View this message in context: http://old.nabble.com/Running-Zebra-Server-Automatically-tp29031359p29032090... Sent from the Koha - Discuss mailing list archive at Nabble.com.
_______________________________________________ Koha mailing list Koha@lists.katipo.co.nz http://lists.katipo.co.nz/mailman/listinfo/koha
participants (4)
-
bariki.kamara@out.ac.tz -
Chris Nighswonger -
Ramon Andinach -
Suyadi