Posts

Showing posts from July, 2019

Upgrade Koha manually

1. Install new koha https://wiki.koha-community.org/wiki/Koha_on_ubuntu_-_packages 2. Login to your existing koha 3. Go to more--tools 4. Click Export Data 5. Select start date (start data where you have installed koha for the first time) and end date till last date of item added on your koha 6. Output format should be in MARC 7. Click export bibliographic record 10. login to new koha and create item types which are available is old koha. 11. Go to tools and click Stage MARC records for import 12. Import the marc file we have exported from old koha 

Adding Instances on existing master node, ganeti

1. Download latest ubuntu under /iso # mkdir /iso 2. Install VNC viewer for windows user and TigerVNC for linux and MAC users 3. Create instance - On master node # gnt-instance add -t plain -o noop \     -s 200G -B minmem=256M,maxmem=512M \     -n nodeX.example.com \     --no-start --no-name-check --no-ip-check \     wordpress 4. Check if the instance is created or not # gnt-instance list -o +network_port 5. Install OS from ISO file you have downloaded under /iso # gnt-instance start \     -H boot_order=cdrom,cdrom_image_path=/iso/ubuntu19.04-amd64.iso \     wordpress Waiting for job 125 for wordpressX ... 6. Check that your VM status has changed from “ADMIN_down” to “running”: # gnt-instance list -o +network_port  Network Configuration (Attaching VMs to the service network) 1. Check the status using gnt-instance list to see which bridge is used by different instances. # gnt-instance list -o na...