Book Image

Koha 3 Library Management System

Book Image

Koha 3 Library Management System

Overview of this book

Koha is the first full-featured open source library management system that is widely used for efficiently managing libraries. However, setting up and maintaining Koha is no walk in the park. It is not as straightforward as setting up the other popular LAMP applications.This practical guide provides all the essential information that is needed to make the task of installing and configuring Koha really seem simple and easy. It demonstrates how to set up Koha and its various aspects – installation, configuration, application administration, and data migration. It also covers troubleshooting, software maintenance, software customization, and other advanced topics.The book starts with installing and configuring the LAMP stack and the Koha application to meet your needs. It then goes deeper into setting up various rules and configuring settings for Koha. It also covers data migration of catalog records, software maintenance, and customization of the application. Chapters are also dedicated to providing an insight into advanced topics such as LDAP integration and Internationalization. Filled with numerous code samples and screenshots, this book will tour you through setting up Koha for evaluation or test purposes. It also includes loads of tips for troubleshooting and maintenance activities. By the end of this book, you will have gained the knowledge to get the most out of your Koha installation.
Table of Contents (19 chapters)
Koha 3 Library Management System
Credits
About the Authors
About the Reviewers
Preface
Index

Setting up a public Z39.50 server


With Koha you can publish your catalog records to the outside world via the Z39.50 protocol. This will allow any Z39.50 compliant client software to search and copy records from your catalog. Some applications of this feature are:

  • Allow other libraries to copy records from your catalog

  • Include your catalog data in results of a Z39.50 compliant federated search tool in use in your organization

Configuring your Koha to be a Z39.50 server is not that hard; we cover the steps below.

We edit the koha-conf.xml file to configure the public Z39.50 server:

koha@li190-245:~/kohaclone$ vi /etc/koha-dev/etc/koha-conf.xml

Configuring the listen directive

The listen directive controls the network protocol, the IP address and the port that our public server will be available on.

To set up the listen directive for the public server, remove the comment tags on the listen directive for the public server:

<!-- public server runs on tcp --><listen id="publicserver" >tcp...