--
You received this message because you are subscribed to the Google Groups "archivematica" group.
To unsubscribe from this group and stop receiving emails from it, send an email to archivematic...@googlegroups.com.
To post to this group, send email to archiv...@googlegroups.com.
Visit this group at http://groups.google.com/group/archivematica.
For more options, visit https://groups.google.com/d/optout.
--
Procedures
1. Export MySQL MCP database
mysqldump --user=root --passsword=password MCP > MCP.sql
2. Backup the Storage service database and pointers (/var/archivematica directory).
sudo rsync -av /var/archivematica /backup/location/archivematica
3. Install a fresh copy of Archivematica using the instructions available from their website. Verify that the fresh installation is working.
4. Restore Archivematica files. For example:
sudo rsync -rtv /backup/location/archivematica/ /var/archivematica/
Ensure that file owner and group owner is Archivematica. Use chgrp –R or chown –R if this is not the case. Make sure read/write permissions are as they were before, and use chmod if not.
5. Restore MySQL database. For example:
mysql –user=root –password=password MCP < MCP.sql