Saturday, May 30, 2020

Koha

                      Koha Uninstall

 

In Ubuntu Open The Terminal 

  •   sudo koha-remove
  •  sudo apt-get remove koha-common
  •  sudo apt -get update
  •  sudo apt-get upgrade 

Saturday, May 23, 2020

Koha Demo

   
Koha Library Software



Koha is the first free software library automation package. In use worldwide, its development is steered by a growing community of users collaborating to achieve their technology goals. Koha’s feature set continues to evolve and expand to meet the needs of its user base.

Demo

Koha is Open Source software

You don’t have to ask anyone or give away any of your information to try it out.
Community members and organizations from around the world provide these demonstration servers for use by libraries interested in Koha. Please send help/questions related to server problems to the Koha mailing list.
MARC flavorVersionStaff loginProvider
MARC2119.11OPACStaff Interfacedemo / demoAdmin Kuhn (Switzerland)
UNIMARC18.11OPACStaff Interfacetest / testBiblibre (France)
MARC2119.11OPACStaff Interfacebywater / bywaterByWater Solutions (USA)
MARC2118.11OPACStaff Interfaceanne / kohaCALYX (Australia)
MARC2119.11OPACStaff Interfacestaff / staff1Catalyst IT Ltd. (New Zealand)
MARC2119.11OPACStaff Interfacedemo / demoEquinox Open Library Initiative (USA)
NORMARC19.11OPACStaff Interfacedemo / demoLibriotech (Norway)
MARC2119.11OPACStaff Interfaceadmin / adminOrex (Spain)
UNIMARC19.11OPACStaff Interfacedemo / demoTamil (France)
You can use this demos but i suggest to use Bywater solutaion (USA).
because this demo you can use in windows and Android also.
Link:-https://intranet.bywatersolutions.com/

Reference :-
https://koha-community.org/

Tuesday, May 12, 2020

Koha Installation

To use Koha, You have to Install Ubuntu.

Ubuntu is a free and open-source Linux.
It is easy to Install and Run. 


In Ubuntu you can open terminal (Ctrl+Alt +T ). 


Open terminal then follow this commands :-

  • sudo su
  • Enter root password
  • sudo apt update
  • sudo apt upgrade
  • echo deb http://debian.koha-community.org/koha stable main | sudo tee /etc/apt/sources.list.d/koha.list

  • wget -O- http://debian.koha-community.org/koha/gpg.asc | sudo apt-key add -
  • sudo apt update
  • sudo apt install koha-common
  • sudo apt update
  • sudo apt upgrade
  • sudo nano /etc/koha/koha-sites.conf  
Here I change the port number of Koha staff client to 8080. Find the following line in the file and make changes.

INTRAPORT="8080" and 
INTRAPORT="80"
  • sudo apt install mariadb-server
  • sudo mysqladmin -u root password koha123  (and you can change password your choice )
  • sudo a2enmod rewrite
  • sudo a2enmod cgi
  • sudo service apache2 restart
  • sudo koha-create --create-db library

Add new port

We have assigned 8080 port for the Koha staff client and 80 for OPAC.
Open the following file and add a new port.

sudo nano /etc/apache2/ports.conf

Copy-paste following line below Listen 80

Listen 8080
  • sudo service apache2 restart
  • sudo a2dissite 000-default
  • sudo a2enmod deflate
  • sudo a2ensite library
  • sudo service apache2 restart
  • sudo service memcached restart