Talk:Koha on Debian

From Koha Wiki
Jump to navigation Jump to search

This is being used to prepare new docs for installation.

Debian Packages on Koha

The Debian packages are the preferred, and easiest, way to install Koha on Debian based operating systems, including Ubuntu and Mint.

OS versions known to work:

  • Debian 7 (Wheezy)
  • Debian 8 (Jessie)1
  • Ubuntu 14.04 (Trusty Tahr)

1 There are some known problems with this, see Bug 14106 for details.

Installation Process

Commands that are in a box and start with '$'

$ like this

are intended to be run at the command line of your server (but don't include the '$'.)

Set up package sources

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

 $ wget -O- http://debian.koha-community.org/koha/gpg.asc | sudo apt-key add -

Pick what version of Koha you want:

  • oldstable (3.16) follows one release behind the current stable release
  • stable (3.18) is the current stable release
  • unstable (master) follows the current development, this is intended for developers and testers only

If you chose oldstable:

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

If you chose stable:

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

Update the package list:

 $ sudo apt-get update

Install Koha

 $ sudo apt-get install koha-common

Aside: a common problem on Ubuntu happens here

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

And everything will fix itself up.

Install the Database

If you are planning to run MySQL on the same server that Koha is on, then run:

 $ sudo apt-get install mysql-server

Configure the defaults

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

Set up Apache

 $ sudo a2enmod rewrite
 $ sudo a2enmod cgi
 $ sudo service apache2 restart

Create a Koha instance

Only do this if you are running MySQL locally.

Replace libraryname with the name of your library:

 $ sudo koha-create --create-db libraryname

If you are running MySQL on another server:

  • remove /etc/mysql/koha-common.cnf
  • create a new file in its place containing the connection information for the server, in the form of a my.cnf file.
  • read the man pages for koha-create, paying attention to the information on --request-db and --populate-db.

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

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 them:

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

Further Configuration

E-mail

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

Translations can be installed:

 $ sudo koha-translate --install language-code

To see all the language codes:

 $ sudo koha-translate --list --available

Other Commands

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.

Koha Packaging Information

Release Policy

The stable package has a new release whenever the release maintainer for the current stable version creates a new version. As soon as a new major version is released, this will be updated with it too (within a couple of days ideally, anyway.)

The oldstable package has a new release whenever the release maintainer creates a new version. If a new major version version is released into stable, this will go up to the next major version that is behind stable. This means that you will get a new major release only after it's been out for several months and hopefully all the bugs have been found.

The unstable package is released whenever:

  • the package maintainer remembers to do it (every couple of weeks, typically. More sometimes.)
  • the current master branch is able to be built without errors.

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