IMPORTANT:If you deploy the Micro Focus MySQL appliance, use the phpMyAdmin web front end to back up the Filr database.
A “Hot Backup” process for MySQL is available from Oracle as part of the paid-for version of MySQL.
If you need to back up or restore the Filr database from the command line, do the following:
Shut down the MySQL service.
Run the following command:
mysqldump -u root -p filr >/backupdir/filrback.sql
This creates a file named filrback that can be used to restore the database.
Restart MySQL.
(Optional) If a filr table does not exist in the location where you want to restore the Filr database, you must create it as follows:
Log in to MySQL using the following command:
mysql -p
Create the database using the following command:
create database filr;
When a filr table exists on the location where you want to restore the database, do the following:
Quit MySQL
Run the following command:
mysql -p filr < /backupdir/filr-back.sql
This completes the restore of the Filr database and its associated tables.