How to install Koha(Integrated Library System) on Ubuntu
Quickloss3
Update Server: apt update && apt upgrade -y
Add Koha community repository: echo deb http://debian.koha-community.org/koha oldstable 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
Install MariaDB server: sudo apt install -y mariadb-server
Install Koha: sudo apt install -y koha-common vim /etc/koha/koha-sites.conf update INTRAPORT="8080"
sudo a2enmod rewrite sudo a2enmod cgi sudo service apache2 restart sudo koha-create --create-db library
Add new port vim /etc/apache2/ports.conf
paste below Listen 80 Listen 8080
sudo service apache2 restart sudo a2dissite 000-default sudo a2enmod deflate sudo a2ensite library sudo service apache2 restart
Setup the library: sudo service memcached restart
Access UI: server_ip:8080
user and pass: vim /etc/koha/sites/library/koha-conf.xml search pass ... https://www.youtube.com/watch?v=FjEJV-JpxZ4
18578293 Bytes