LINUX, FOSS AND LIBRARY TECHNOLOGY ENTHUSIAST

Monday, July 1, 2019

Upgrading Koha to the Stable Release

0 comments
The new version of Koha release every six months with new features. Upgradation is easy with Koha installation based on Debian/Ubuntu packages.

Apply the following command in Applications > Accessories > Terminal

sudo apt-get update

sudo apt-get upgrade

sudo apt-get install koha-common -y

If any errors show, install again repository key.

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

Again repeat the upgrade process.

Clean the packages after upgradations,

sudo apt-get clean

Upgrade Database Schema

The database schema of old Koha should upgrade to the new one. Apply following commands in a terminal,

sudo koha-upgrade-schema library

Rebuild the Zebra Index.

Apply following command in a terminal,

sudo koha-rebuild-zebra -v -f library

Thank You

No comments:

Post a Comment