updates to some of the finer points of the install process on Etch

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
This commit is contained in:
Joshua Ferraro 2007-12-30 11:40:52 -05:00
parent dd50153f00
commit 844f1fae1a

View file

@ -6,7 +6,7 @@ Copyright (C) 2007, LibLime
Maintainer: Joshua Ferraro (jmf AT liblime DOT com)
Feedback/bug reports: jmf AT liblime DOT com
This document last modified: 22 December 2007
This document last modified: 29 December 2007
Installation Instructions
=============================
@ -52,7 +52,9 @@ Run the following command to update your system:
$ sudo apt-get -t etch-backports install git-core git-email
$ sudo apt-get install yaz idzebra-2.0 idzebra-2.0-doc
1.3 Download Koha via Git
1.3 Get Koha
1.3.1 Option A: Download Koha via Git (optional)
$ git clone git://git.koha.org/pub/scm/koha.git kohaclone
$ cd kohaclone
@ -62,6 +64,8 @@ Note: for more information about Git, please see the Koha Git Usage Guide:
http://wiki.koha.org/doku.php?id=en:development:git_usage
1.3.2 Option B: Download Koha from koha.org
1.4 Install additional Debian dependencies
IMPORTANT: You should only use CPAN for Perl dependencies which are NOT available from the package maintainer.
@ -123,10 +127,10 @@ When the configuration is completed CPAN will install the Perl modules.
2.2 Create the Koha database
Create the database and user with associated privileges:
$ mysqladmin -uroot -p<password> create database <kohadatabasename>
$ mysql -uroot -p<password>
Create the database and user with associated privileges:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 22
@ -134,9 +138,6 @@ When the configuration is completed CPAN will install the Perl modules.
Type 'help;' or '\h' for help. Type '\c' to clear the buffer.
mysql> create database <kohadatabasename>;
Query OK, 1 row affected (0.00 sec)
mysql> grant all on <kohadatabasename>.* to '<kohadatabaseuser>'@'localhost' identified by '<kohadatabaseuserpassword>';
Query OK, 0 rows affected (0.00 sec)
@ -290,7 +291,7 @@ Uninstall Instructions
$ sudo rm /etc/init.d/koha-zebra-daemon
$ sudo rm /etc/init.d/koha-zebraqueue-daemon
2) Remove Koha Database
2) Remove Koha Databases
# MySQL
$ mysql -u<kohauser> -p<kohapassword>
@ -300,7 +301,7 @@ Uninstall Instructions
$ zebraidx -c <prefix>/etc/zebradb/zebra-biblios.cfg -g iso2709 -d biblios init
$ zebraidx -c <prefix>/etc/zebradb/zebra-authorities.cfg -g iso2709 -d authorities init
3) Remove Koha Install Directories
3) Remove Koha Install Directories and Configuration Files
Tested on the following operating environments
==============================================