How to delete library data in koha using the command line Sometimes you need to empty the all data (e.g. bibliographic, borrowers, and transaction details) from your Koha LMS without losing the configuration settings and authorized values, e.g. libraries, item types, patron categories, locations, etc. Let us know how to delete data from the Koha instance/library. Delete Koha's bibliographic data NB: I would recommend taking a backup of the database before applying the following commands. Login as a root user sudo su Log into MySQL database mysql -uroot -p Enter MySQL root password use koha_library; Disable foreign key constraints when you truncate the tables SET FOREIGN_KEY_CHECKS=0; Delete all bibliographic details TRUNCATE items; TRUNCATE biblioitems; TRUNCATE biblio; TRUNCATE deletedbiblioitems; TRUNCATE deletedbiblio; TRUNCATE biblio_metadata; Delete all transactions TRUNCATE old_issues; TRUNCATE issues; Delete borrowers details ...
Koha INSTALLATION After installation of ubuntu 20.4 (Focal Fossa), right click on the mouse choose open terminal. past the following comments in terminal. Update Ubuntu using apt sudo apt update sudo apt upgrade -y if the system asks for update make it "Remind me later" it may confuse the process Clear the apt-get packager manager cache sudo apt clean Install MariaDB-server dependence sudo apt install -y mariadb-server Provide MySQL/MariaDB root password (If the password asks during the installation process, enter the password in the window. Apply the following command, if the password window did not appear during the installation secure it) Securing MariaDB Run this command to improve the security of the MariaDB installation: sudo mysql_secure_installation (The script will prompt you to set up the root user password, remove the anonymous user, restrict root user access to the local machine and remove the test d...
Install Dspace 6.3 on Windows10 Pre-Requisite Software: i) Java JDK ii) Apache Maven iii) Apache Ant iv) Apache Tomcat v) PostgreSQL vi) Dspace Step-1: Download Java jdk-8u111-windows-x64.exe from below link. ( Note: If you are new to Oracle, you need to create user account otherwise you can log in to download the software). https://www.oracle.com/java/technologies/javase/javase8-archive-downloads.html Step-2: Download apache-maven-3.3.9-bin.zip file from below link. https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.3.9/ Step-3: Download apache-ant-1.9.7-bin.zip file from below link. https://archive.apache.org/dist/ant/binaries/ Step-4: Download apache-tomcat-9.0.0.M13.exe file from below link. https://archive.apache.org/dist/tomcat/tomcat-9/v9.0.0.M13/bin/ Step-5: Download postgresql-9.4.26-1-windows-x64.exe file from below link. https://www.enterprised...
Comments
Post a Comment