Koha on Debian

From Koha Wiki
(Redirected from Debian)
Jump to navigation Jump to search

Before you begin

These instructions assume you are starting from scratch, on a fresh server, with none of the prerequisites already installed.

Koha is large, and it is built on top of a stack of other software (such as Perl, Perl packages from CPAN, MySQL or MariaDB for the database, Apache for the webserver, Zebra or Elasticsearch/Open Search for the search engine). As a result, the memory requirements to run it are going to be significant (2GB minimum).

You must ensure that the target machine has adequate free memory available to run Koha before you begin.

Following these instructions will result in an instance of Koha and the necessary support software which together consume between 750MB - 1GB of memory at idle. If you are installing the database server on the same machine as Koha, assume it is going to need another 350MB - 500MB of RAM.

Note that the database and webserver can be tuned to reduce memory consumption, but those optimizations and their consequences are outside of the scope of these instructions. Additionally, having swap enabled will help absorb any spikes in memory needs (4GB minimum swap file/partition).

Conventions

Commands that are in a box and start with '$' are intended to be run at the command line of your server (don't include the '$'):

$ enter a command

Installing the operating system

Debian based operating systems are recommended. This includes Debian, Ubuntu, and Mint.

Normally, you would install a minimal server version of the operating system, and then use the available Koha packages.

See the system requirements and recommendations page for information about which operating system versions are tested and known to work.

Using the Koha packages

Koha's Debian packages are the preferred, easiest, and recommended way to install Koha.

Setting up package sources

Add the GPG key to your system so that you know that the packages haven't been tampered with:

$ sudo apt update
$ sudo apt -y install sudo wget gnupg
$ wget -q -O- https://debian.koha-community.org/koha/gpg.asc | sudo apt-key add -
$ sudo apt update

The apt-key deprecation warning

Since apt-key is deprecated and will no longer be available in future releases of Debian and Ubuntu there's a new way of adding GPG-keys. While apt-key will tell you to manage keys under /etc/trusted.gpg.d the Debian community recommends a different approach. Read this for reference: https://wiki.debian.org/DebianRepository/UseThirdParty

$ sudo apt update
$ sudo apt -y install sudo wget gnupg2
$ wget -qO - https://debian.koha-community.org/koha/gpg.asc | sudo gpg --dearmor -o /usr/share/keyrings/koha-keyring.gpg
$ sudo apt update

This means that instead of the regular entry in /etc/apt/sources.list.d/koha.list which looks like this:

 deb https://debian.koha-community.org/koha stable main

You'll need to specify the location of the key-file inside the entry like this:

 deb [signed-by=/usr/share/keyrings/koha-keyring.gpg] https://debian.koha-community.org/koha stable main

Choosing what Koha release to follow - a version number or a codename

You can choose to follow a specific Koha version number or a codename for the release. This determines what packages are updated when you run updates.

Following a version number (recommended)

When you follow a specific Koha version number, you stay on that version of Koha until the package sources are changed. This is recommended for production environments, so that you don't 'accidentally' upgrade to a new major release. When you run updates, you will only upgrade to the latest maintenance release for the version chosen.

The current Koha version numbers and their codenames are:

  • 24.05 (stable) is the current stable release
  • 23.11 (oldstable) follows one release behind the current stable release
  • 23.05 (oldoldstable) follows two releases behind the current stable release
  • 22.11 (LTS) (oldoldoldstable) is the long-term support release, maintained for approximately 3 1/2 years

To update your package source list to use the 24.05 release:

$ echo 'deb https://debian.koha-community.org/koha 24.05 main' | sudo tee /etc/apt/sources.list.d/koha.list

To update your package source list to use the 23.11 release:

$ echo 'deb https://debian.koha-community.org/koha 23.11 main' | sudo tee /etc/apt/sources.list.d/koha.list

To update the packages:

$ sudo apt-get update

Following a codename (not recommended)

When you follow a codename for a release, you are automatically upgraded to the next major Koha release at the start of every six month release cycle. For example when the 24.11 release becomes available: if you follow the current stable release, you would automatically be upgraded from Koha 24.05 to 24.11 when the 24.11 release becomes available; if you follow oldstable, you would automatically be upgraded from Koha 23.11 to 24.05.

Following a codename for a release is NOT recommended for a production environment, unless you like "living on the edge". Major releases contain new features and many enhancements, and sometimes unexpected issues can occur despite a release teams best efforts to create a stable release. It is highly recommended that libraries test before upgrading between major versions. See Koha versioning and the recommendations section.

The current codenames and their versions are:

  • stable (24.05) is the latest stable release
  • oldstable (23.11) follows one release behind the current stable release
  • oldoldstable (23.05) follows two releases behind the current stable release
  • oldoldoldstable (22.11) (LTS) is the long-term support release, maintained for approximately 3 1/2 years

To update the package source list to use the stable release:

$ echo 'deb https://debian.koha-community.org/koha stable main' | sudo tee /etc/apt/sources.list.d/koha.list

To update the package source list to use the oldstable release:

$ echo 'deb https://debian.koha-community.org/koha oldstable main' | sudo tee /etc/apt/sources.list.d/koha.list

To update the packages:

$ sudo apt update

NOT UP TO DATE - Support for Koha on older versions of Debian or Ubuntu

Older versions of Debian/Ubuntu currently supported are:

  • Ubuntu 18.04/Bionic

If you are unsure of your Debian or Ubuntu codename, run these commands:

$ sudo apt-get -y install lsb-release
$ lsb_release -cs
bionic

Below are some examples, remember to replace both Koha and Debian/Ubuntu codenames with your required values

If you choose Koha 21.05 and Debian/Ubuntu codename bionic

$ echo 'deb http://debian.koha-community.org/koha 21.05 main bionic' | sudo tee /etc/apt/sources.list.d/koha.list

or, if you choose Koha stable and Debian/Ubuntu codename bionic

$ echo 'deb http://debian.koha-community.org/koha stable main bionic' | sudo tee /etc/apt/sources.list.d/koha.list

Then update the package database:

$ sudo apt update

Installing Koha

Install Koha

$ sudo apt install koha-common

Install the database

You can use either MariaDB (recommended) or MySQL as the database server.

This is not required if you are using a database on another server.

To use MariaDB:

$ sudo apt install mariadb-server

To use MySQL:

$ sudo apt install mysql-server 

Configure the defaults for Koha instances

Edit the file /etc/koha/koha-sites.conf and adjust it to suit the configuration that you'd like.

Set the DOMAIN value to the domain you wish to access this Koha from. Also pay attention to the INTRASUFFIX as your DNS entries will also require this. Instructions for setting up a domain for Koha can be found on the page How to set up a domain name for Koha.

If your catalogue is not MARC21, change ZEBRA_MARC_FORMAT. You may also adapt ZEBRA_LANGUAGE.

Some more useful information on how to set up your koha-sites.conf can also be found in Appendix A: Named-based vs. IP-based installations.

Set up Apache

$ sudo a2enmod rewrite 
$ sudo a2enmod cgi 
$ sudo systemctl restart apache2

If you are configuring Koha for access by IP address rather than by domain name, please remember to edit /etc/apache2/ports.conf and make sure the following lines are present:

Listen 80
Listen <staff interface port number>

You will only need the second Listen entry, if you have chosen to make the staff interface accessible on a different port.

Create a Koha instance

If you are running your database locally (replace libraryname with the name of your library):

$ sudo koha-create --create-db libraryname

For more options, see Commands provided by the Debian packages#koha-create.

Important: Make sure to check available options carefully. If you use UNIMARC, you'll need to use the --marcflavor option to set your instance up correctly.

If you are running your database on another server:

  1. Remove /etc/mysql/koha-common.cnf
  2. Create a new "option file" in its place with the same file name containing the client connection information for the server (the same syntax you'll find in a my.cnf file).
    • You will need to specify the host, user, and password within a [client] option group.
    • Koha commands will automatically use the /etc/mysql/koha-common.cnf via the --defaults-extra-file option for the MySQL CLI client
  3. Read the man pages for koha-create, paying attention to the information on --request-db and --populate-db.
  4. Using --request-db will disable koha instance, so to enable the instance after using --populate-db, perform command koha-enable.

Set up plack

You will need set up Apache modules for koha-plack to work:

$ sudo a2enmod headers proxy_http
$ sudo koha-plack --enable libraryname
$ sudo koha-plack --start libraryname
$ sudo systemctl restart apache2

Access the web interface

You will need to have your DNS set up for this. The default hostnames are:

  • libraryname.domain for the public interface
  • libraryname-intra.domain for the staff interface

where:

  • libraryname is the name provided to koha-create
  • domain is the value of DOMAIN that you set in /etc/koha/koha-sites.conf

If you want to change the hostname details of the instance, you can edit /etc/apache2/sites-enabled/libraryname.conf and restart Apache.

Open a web browser, and point it to your staff interface, by going to http://libraryname-intra.domain, or whatever you manually configured.

When you see the login for the Koha installer, the username and password are in the koha-conf.xml file for the instance.

You can view the password with:

 $ sudo koha-passwd libraryname

The default username is koha_libraryname

Or you can view them with:

$ sudo xmlstarlet sel -t -v '/yazgfs/config/user' /etc/koha/sites/libraryname/koha-conf.xml
koha_libraryname 
$ sudo xmlstarlet sel -t -v '/yazgfs/config/pass' /etc/koha/sites/libraryname/koha-conf.xml
randompasswordtext

If you encounter timeout errors

Some steps taken by the web-based installer to set up database tables may take considerable time to complete, and may generate timeout errors. If you receive a "Gateway Timeout" error in the web browser, try editing the file /etc/apache2/apache2.conf to increase apache's Timeout setting.

Additional configuration

Email

By default, email is turned off. This is to let you get everything set up before you risk sending unwanted notices to people. To turn email on:

$ sudo koha-email-enable libraryname

Translations TO BE UDPATED

To see all the language codes:

$ sudo koha-translate --list --available
  am-Ethi
  ar-Arab
  as-IN
  ...

Translations can be installed as required:

$ sudo koha-translate --install am-Ethi  ar-Arab  as-IN

Searching and non-latin languages

To get searching with non-latin languages (such as Russian, Chinese and Arabic) working correctly in Koha you need to setup and configure ICU.

List of commands provided by the Debian packages

There is a list of Commands provided by the Debian packages. All commands begin with koha-, and have man pages installed, for example:

$ man koha-create

Services

Koha installs a service in /etc/init.d/koha-common. This ensures that the zebra daemon and, if configured, SIP daemon are running. You can use the start, stop, and restart commands to control these.

MySQL vs MariaDB TO BE UDPATED

MariaDB 10.1 is now the default mysql server in Debian 9 "Stretch", therefore we recommend using Koha with MariaDB over MySQL.

An upgrade guide from MySQL to MariaDB exists here

Due to how MySQL behaves with AUTO_INCREMENT values you should take a look at this dedicated wiki page to fix potential issues.

Elasticsearch

If you want to use Elasticsearch instead of Zebra, please follow these steps:

Install the Koha dependencies and the Java JDK

$ sudo apt install koha-elasticsearch openjdk-11-jdk-headless

Download the Elasticsearch server (v6 is known to work, v7 is ready for Koha 22.11)

$ sudo apt-get install apt-transport-https
$ wget -qO - https://artifacts.elastic.co/GPG-KEY-elasticsearch | sudo gpg --dearmor -o /usr/share/keyrings/elasticsearch-keyring.gpg
$ echo "deb [signed-by=/usr/share/keyrings/elasticsearch-keyring.gpg] https://artifacts.elastic.co/packages/6.x/apt stable main" | sudo tee /etc/apt/sources.list.d/elastic-6.x.list
$ sudo apt-get update && sudo apt-get install elasticsearch

Install the analysis-icu plugin

$ sudo /usr/share/elasticsearch/bin/elasticsearch-plugin install analysis-icu

Restart the server

$ sudo service elasticsearch restart

Wait a few seconds then check if it is running correctly

$ curl localhost:9200
{
   "name" : "MLhu8oD",
   "cluster_name" : "elasticsearch",
   "cluster_uuid" : "cTXuxxIPTd2KrWgyRCPAxw",
   "version" : {
     "number" : "6.8.23",
     "build_flavor" : "default",
     "build_type" : "deb",
     "build_hash" : "4f67856",
     "build_date" : "2022-01-06T21:30:50.087716Z",
     "build_snapshot" : false,
     "lucene_version" : "7.7.3",
     "minimum_wire_compatibility_version" : "5.6.0",
     "minimum_index_compatibility_version" : "5.0.0"
   },
   "tagline" : "You Know, for Search"
}

Switch the system preferences SearchEngine to 'Elasticsearch' then index your records

$ koha-elasticsearch --rebuild -d libraryname

Open Search

To be added

Anacron

Zebra server may go down occasionally if you are using Anacron (see https://lists.katipo.co.nz/pipermail/koha/2016-September/046167.html).

To avoid that:

1. Edit /etc/cron.d/anacron and add a # to turn off the line starting with 30 7 * * * ....anacron...

2. Rename "anacron"

$ mv /usr/sbin/anacron /usr/sbin/anacron-temporarily-renamed

Upgrading Koha

Before upgrading Koha, update your system's package information:

$ sudo apt-get update

To confirm which version of Koha is installed, and which version will be upgraded to, run:

$ apt-cache policy koha-common | grep -E 'Installed|Candidate'
Installed: 21.05.01-1
Candidate: 21.05.09-1

If you installed Koha as described above, an upgrade should be as easy as this:

$ sudo apt-get upgrade

This will upgrade to the latest minor version, e.g. from 19.11.10 til 19.11.13. (It will also upgrade all the other software on your server that needs an upgrade.)

The upgrade will print a list of software to be updated, please read this list before proceeding with the upgrade, and if packages related to mysql or mariadb are present, you should cancel and run the database upgrade first. If the package listed was mariadb-server*, first run:

$ sudo apt-get install mariadb-server

And when it is done continue with:

$ sudo apt-get upgrade

This will prevent a problem where koha's database upgrade tries to run while the database server is being updated.

Upgrading Koha to a major version

If you want to upgrade to a newer major version (e.g. from 19.11.x to 20.05.x) you may need to adjust the file /etc/apt/sources.list.d/koha.list before you do "sudo apt-get update". See "Choosing what Koha release to follow - a version number or a codename" above for an idea of what you need to do.

Then, after adjusting /etc/apt/sources.list.d/koha.list you should be able to upgrade with the same commands:

$ sudo apt-get update
$ apt-cache policy koha-common | grep -E 'Installed|Candidate'
Installed: 19.05.14-1
Candidate: 21.05.04-1

If the 'Candidate' version looks correct, then:

$ sudo apt-get upgrade

Sometimes this will not upgrade Koha, because it is "held back" (this happens when the upgrade means you have to install new packages on the server, e.g. new Perl modules). In that case you have to try again with this command:

$ sudo apt-get dist-upgrade

Remember to always scan the output of these commands for any error messages related to the upgrading of the Koha database.

Confirm the 'koha-common' package has been installed successfully

$ dpkg -s koha-common | grep Status
Status: install ok installed

Koha packaging information

Release policy

All release series aim to release a new Koha version around the 20th of every month.

How koha-create configures your system

When you create an instance with koha-create, a few things happen. For the sake of example, this assumes that the instance you created is called library.

  • A system user is created, called library-koha. All things to do with this instance will be run as this user.
  • (If you have a local MySQL) a new MySQL user is created called koha_library
  • (If you have a local MySQL) a new MySQL database is created called koha_library
  • /var/lib/koha/library is created and populated with a default directory structure.
  • The Koha sites directory (/etc/koha/sites/library) is created and populated. In particular, a koha-conf.xml is generated and put there with the passwords that were randomly generated for the database and zebra.
  • An apache configuration file is put in /etc/apache2/sites-available/library.conf. Apache is restarted to make the change take effect.
  • A Zebra daemon for this instance is started, running as the library-koha system user.

Packaging releases

There is a bit of a mind-dump of information on Building Debian Packages for release. If you want to maintain your own packages, also have a look at Building Debian Packages - The Easy Way.

Other things

Warnings and errors

Failed to enable unit: Unit /run/systemd/generator.late/koha-common.service

You can safely ignore the following warning when installing or upgrading koha, (fixed in bug 33371)

Failed to enable unit: Unit /run/systemd/generator.late/koha-common.service is transient or generated.

Errors were encountered while processing: libapache2-mpm-itk

If you see this:

Errors were encountered while processing:
libapache2-mpm-itk
apache2-mpm-itk
koha-common

Then do this:

$ sudo a2dismod mpm_event 
$ sudo apt-get install -f


Developer handbook