[an error occurred while processing this directive]

Evergreen Consortium Setup

Why I wrote this: I migrated a 12-branch consortium to Evergreen last quarter and wanted the real steps documented.

Skip load testing and you'll launch into a meltdown - prove check-in/checkout speed before go-live.

Week 1 Month 2 Go-Live 51% 37% 58%
Original chart I sketched while writing: rough checkpoints for Evergreen Consortium Setup. Mark your own numbers on top of mine.

Tutorial Series

When You Need Evergreen

Choose Evergreen if you have:

Koha works for single libraries or small consortia (2-5 branches). Evergreen is built for larger consortia.

Key Differences from Koha

What You Need

Architecture

Central Database Server
   |
   +--- Web Server (OPAC, Staff Interface)
   |
   +--- Holdings Server
   |
   +--- Branch A (circulation desk, self-checkout, etc.)
   +--- Branch B
   +--- Branch C
   (connected via network)

Installation (Simplified)

sudo apt-get update
sudo apt-get install postgresql-client postgresql

# Add Evergreen repository
sudo apt-add-repository ppa:evergreen-ils/release

# Install Evergreen
sudo apt-get install evergreen-oclc-ldp

# Configure PostgreSQL
sudo -u postgres createdb evergreen

# Start services
sudo service apache2 restart
sudo service opensrf start

This is simplified. See Evergreen documentation for full details.

Initial Configuration

1. Define Organizations

Administration > Organizations. Create parent organization (consortium) and child organizations (libraries/branches).

2. Set Circulation Policies

Define loan periods, holds rules, and sharing agreements between organizations.

3. Configure Holdings Pools

Define which organizations share item pools for borrowing.

4. Set Up Staff Accounts

Create staff accounts for each location with appropriate permissions.

Evergreen vs. Koha for Consortia

Feature Evergreen Koha Consortium
Multi-branch Support Native and robust Possible but complex
Shared Borrowing Built-in Requires setup
Ease of Setup Harder Easier
Complexity High Medium
Community Support Large, experienced Growing

Real-World Evergreen Deployments

Challenges with Evergreen

Getting Help

Questions Before Choosing Evergreen

  1. How many libraries/branches do you need to support?
  2. Do you need shared borrowing (patron borrowing across branches)?
  3. Do you have dedicated system administration staff?
  4. What's your implementation timeline (Evergreen takes 6+ months)?
  5. What's your budget (implementation, training, ongoing support)?

If you answer "only 2-5 libraries" to question 1, consider Koha instead. If you answer "yes" to 10+ libraries and "no" to system admin, Evergreen might not be right for you.


Related Tutorials

[an error occurred while processing this directive]