{"id":13117,"date":"2023-05-26T04:16:29","date_gmt":"2023-05-26T08:16:29","guid":{"rendered":"http:\/\/local.brightwhiz\/?p=13117"},"modified":"2023-05-26T04:16:33","modified_gmt":"2023-05-26T08:16:33","slug":"how-to-move-your-old-koha-database-to-new-upgraded-koha-installation","status":"publish","type":"post","link":"http:\/\/local.brightwhiz\/how-to-move-your-old-koha-database-to-new-upgraded-koha-installation\/","title":{"rendered":"How to Move Your old Koha Database to new Upgraded Koha Installation"},"content":{"rendered":"\n
This guide will walk you through the steps you need to take to move your old koha database to a newly installed Koha setup. The instructions shown here will be run on an Ubuntu server as a reference.<\/p>\n\n\n\n
Start by taking backup of your existing Koha database by running the following command in your Ubuntu server terminal. These commands will result in storing the backup in your current directory. We also assume your koha database is named koha_library. You should replace koha_library<\/strong> with whatever your database is named.<\/p>\n\n\n\n$ sudo su<\/code><\/pre>\n\n\n\n
# mysqldump --single-transaction -u root -p koha_library > koha_library.sql<\/code><\/pre>\n\n\n\n
2. Install Koha<\/h2>\n\n\n\n