Migrating from PostgreSQL to MySQL

This document explains how to migrate the contents of an existing Nautobot PostgreSQL database to a new MySQL database.

Export data from PostgreSQL

In your existing installation of Nautobot with PostgreSQL, run the following command to generate a JSON dump of the database contents. This may take several minutes to complete depending on the size of your database.

(nautobot-postgres) $ nautobot-server dumpdata \
    --natural-foreign --natural-primary \
    --exclude contenttypes --exclude auth.permission --exclude extras.job \
    --format json --indent 2 --traceback \
    > nautobot_dump.json

This will result in a file named nautobot_dump.json.

Create the MySQL database

Create the MySQL database for Nautobot, ensuring that it has the correct character set (utf8mb4) and collation (utf8mb4_bin) settings for case-sensitivity (MySQL will otherwise be case-insensitive by default, which may cause problems when importing your data from the case-sensitive PostgreSQL database dump). Refer to the instructions for CentOS/RHEL or Ubuntu as necessary if you are unsure how to set up MySQL and create the Nautobot database.

Apply database migrations to the MySQL database

With Nautobot pointing to the MySQL database (we recommend creating a new Nautobot installation for this purpose), run nautobot-server migrate to create all of Nautobot's tables in the database:

(nautobot-mysql) $ nautobot-server migrate

Remove the auto-populated Status records from the MySQL database

A side effect of the nautobot-server migrate command is that it will populate the Status table with a number of predefined records. This is normally useful for getting started quickly with Nautobot, but since we're going to be importing data from our other database, these records will likely conflict with the records to be imported. Therefore we need to remove them, using the nautobot-server nbshell command in our MySQL instance of Nautobot:

(nautobot-mysql) $ nautobot-server nbshell
### Nautobot interactive shell (32cec46b2b7e)
### Python 3.9.7 | Django 3.1.13 | Nautobot 1.1.3
### lsmodels() will show available models. Use help(<model>) for more info.
>>> Status.objects.all().delete()
(67, {'extras.Status_content_types': 48, 'extras.Status': 19})
>>>

Press Control-D to exit the nbshell when you are finished.

Import the database dump into MySQL

Use the nautobot-server loaddata command to import the database dump that you previously created. This may take several minutes to complete depending on the size of your database.

(nautobot-mysql) $ nautobot-server loaddata --traceback nautobot_dump.json

Assuming that the command ran to completion with no errors, you should now have a fully populated clone of your original database in MySQL.