[an error occurred while processing this directive]

Koha ILS Setup Guide

Why I wrote this: I untangled a Koha install that went sideways and wrote the version I wish they'd had.

If you don\'t script backups and updates from day one, your "free' ILS will cost you in downtime.

Week 1 Week 4 Go-Live 79% 86% 71%
Original chart I sketched while writing: rough checkpoints for Koha ILS Setup Guide. Mark your own numbers on top of mine.

Tutorial Series

What You'll Learn

Before You Start: Is Koha Right for You?

Consider Koha if:

Koha may not be right if:

What You'll Need

Infrastructure

Expertise

Installation

# Add Koha repository
echo "deb http://debian.koha-community.org/koha stable main" | sudo tee /etc/apt/sources.list.d/koha.list
wget -q -O- https://debian.koha-community.org/koha/archive.asc | sudo apt-key add -

# Update and install
sudo apt-get update
sudo apt-get install koha-common

# Create instance
sudo koha-create --create-db --marcflavour MARC21 --admin-user admin mylib

# Start services
sudo systemctl start koha-common
sudo systemctl restart apache2

Access at: http://mylib.localdomain/cgi-bin/koha

Initial Configuration

1. Change Default Password

First login: Administration > Users. Change admin password immediately.

2. Set Up Library Structure

Administration > Libraries and Groups. Add your main library with code, name, and contact info.

3. Define Item Types

Administration > Item Types. Set up Books, DVDs, etc.

4. Set Patron Categories

Administration > Patron Categories. Create Adult, Youth, Senior, Staff categories.

5. Configure Circulation Rules

Administration > Circulation and Fines Rules. Set loan periods and late fees.

Cataloging Your First Items

Manual Cataloging

Catalog > New Bibliographic Record. Fill in title, author, ISBN, publication date. Then add an item with barcode, item type, location, and call number.

Import from Z39.50 (Faster)

Catalog > Z39.50 Search. Search Library of Congress or WorldCat, import records.

Important Concepts

Bibliographic Records vs. Items

One record per unique book. One item per physical copy. 5 copies = 1 record with 5 items.

MARC Format

Koha uses MARC (Machine-Readable Cataloging), the international library standard.

Common Gotchas

When to Consider Other Systems

Evergreen: For large consortia (10+ libraries) needing shared infrastructure.

VuFind: If you want modern discovery separate from cataloging.

Getting Help

Next Steps

  1. Catalog 50-100 items and test with staff
  2. Customize your OPAC
  3. Train staff on operations
  4. Plan migration if moving from another system
  5. Set up backups and monitoring

Related Tutorials

[an error occurred while processing this directive]