Archivematica Storage Service 0.18.1 is a legacy release, and these documents are no longer being maintained.

Migrating data from SQLite to MySQL

Storage Service supports both SQLite and MySQL databases. In most cases, it is preferably to use the latter since SQLite does not support concurrent writes. This is exarcerbated by the fact that Storage Service performs long write transactions.

Please find below an overview of the steps needed to move your data to MySQL. Make sure that you take a back up of your SQLite database before you proceed.

  1. Stop Storage Service:

    systemctl stop archivematica-storage-service
    
  2. Export your data to JSON:

    sudo -u archivematica bash -c " \
        set -a -e -x
        source /etc/default/archivematica-storage-service || \
            source /etc/sysconfig/archivematica-storage-service \
                || (echo 'Environment file not found'; exit 1)
        cd /usr/lib/archivematica/storage-service
        /usr/share/archivematica/virtualenvs/archivematica-storage-service/bin/python manage.py dumpdata \
            --exclude=auth.permission --exclude=contenttypes --exclude=sessions.session --natural-foreign --natural-primary --indent 4 -o /tmp/datadump.json
    ";
    
  3. Create the MySQL database:

    CREATE DATABASE storage_service_test CHARACTER SET utf8 COLLATE utf8_general_ci;
    
  4. Grant privileges to the user:

    GRANT ALL PRIVILEGES ON storage_service_test.* TO 'username'@'localhost';
    
  5. Update the service configuration, e.g. in /etc/default/archivematica-storage-service, remove SS_DB_NAME and add instead the following:

    SS_DB_URL=mysql://username:password@hostname:3306/storage_service_test
    
  6. Create the MySQL tables:

    sudo -u archivematica bash -c " \
        set -a -e -x
        source /etc/default/archivematica-storage-service || \
            source /etc/sysconfig/archivematica-storage-service \
                || (echo 'Environment file not found'; exit 1)
        cd /usr/lib/archivematica/storage-service
        /usr/share/archivematica/virtualenvs/archivematica-storage-service/bin/python manage.py migrate
    ";
    
  7. Load the JSON export:

    sudo -u archivematica bash -c " \
        set -a -e -x
        source /etc/default/archivematica-storage-service || \
            source /etc/sysconfig/archivematica-storage-service \
                || (echo 'Environment file not found'; exit 1)
        cd /usr/lib/archivematica/storage-service
        /usr/share/archivematica/virtualenvs/archivematica-storage-service/bin/python manage.py loaddata /tmp/datadump.json
    ";
    
  8. Start Storage Service:

    systemctl start archivematica-storage-service
    

If you use Ansible, the Archivematica role can perform the migration automatically. Please follow the instructions.