User manual
Chapter 1
This means we need to install YAZ related packages using the package manager, on
Debian -yaz and libyaz-dev and on openSUSE
-yaz, libyaz, libyaz -devel.
After installing these packages using the package manager, we run the
make
series of
commands to complete the installation:
cpan[8]> look Net::Z3950::ZOOM
sh -3.2# make clean
sh -3.2# perl Makefile.PL
sh -3.2# make
sh -3.2# make test
sh -3.2# make install
sh -3.2# exit
cpan[8]>
Setting up Koha's MySQL database
Before we install Koha, we need to setup Koha's MySQL database and a MySQL
user with privileges over the database.
Unless you have already done this as part of the installation, we first secure MySQL
by configuring a password for the root users:
koha ®li190- 245:linux: /home /koha # mysqladmin -u root password
'yourdbrootpasswd';
Log in to MySQL using root:
koha ®li190 -245: -/kohaclone$ mysql -u root -p
Enter password:
Create Koha's database:
mysql> create database koha;
Create a MySQL user for Koha's database and grant it privileges. Both actions are
accomplished with one command:
mysql> grant all on koha.* to 'kohaadmin'®'localhost' identified by
'katikoan';
mysql> flush privileges;
mysql> quit
[19]