Migrate your MongoDB® database to Northflank | Migrate Data to Northflank | Databases And Persistence | Northflank Application docs
v1

Databases And Persistence / Migrate Data to Northflank /

Migrate your MongoDB® database to Northflank

You can import your existing MongoDB® database to Northflank by creating and uploading a dump of your database, or providing a connection string to your existing database.

Imports will be more reliable if the database you are importing to is the same, or a newer, version of MongoDB as the source database you are exporting from.

warning

Both methods of importing a database will erase all existing user databases in the Northflank addon, if there are any.

You should first create a Northflank MongoDB addon to import to, and connect to it with your preferred administration tool. If you require your Northflank deployment to remain private you can forward it to your local machine and use the non-external endpoints and commands to connect.

Permissions

To run mongodump you must have find privileges on the databases you want to back up, or the backup role.

Import from dump

Importing from a dump of a database will erase all existing user databases on the target MongoDB addon, and your dump will be imported as the default database on the Northflank addon (specified in your addon’s connection details as DATABASE).

To start, you will need to generate a dump of your existing database using mongodump .

Create a dump using mongodump

You must run mongodump from the system command line, not the mongo shell. You must have the MongoDB Database Tools installed.

You can use either a connection string or provide your connection details as parameters to the mongodump command. The exact connection string or details you use to connect will depend on your provider or MongoDB configuration. The following commands create a compressed archive file in the working directory where the command is run, you can omit the --gzip flag and .gz extension to produce an uncompressed file.

With connection string

## Standalone
mongodump --uri="mongodb://<USER><:PASSWORD>@<HOST><:PORT></DATABASE_TO_EXPORT>?authSource=<AUTH_DB>" --gzip --archive=<DUMP_NAME>.archive.gz

## Replica set using DNS seed list
mongodump --uri="mongodb+srv://<USER><:PASSWORD>@<HOST><:PORT></DATABASE_TO_EXPORT>?replicaSet=<REPLICA_SET>&authSource=<AUTH_DB>" --gzip --archive=<DUMP_NAME>.archive.gz

With parameters

mongodump --host=<HOST> --port=<PORT> --username=<USER> --authenticationDatabase=<AUTH_DB> --db=<DATABASE_TO_EXPORT> --gzip --archive=<DUMP_NAME>.archive.gz

See the monogodump documentation for more information.

Import dump to Northflank

Navigate to your MongoDB addon’s backups page and click import backup. Enter a recognisable name and select either upload, if your dump is stored locally, or URL if your dump is hosted online and accessible. You can upload the dump as plain text, or as a gzipped file (.gz).

After selecting your file, or entering the URL, click upload import. All backups stored on Northflank are encrypted at rest, to keep your data private and secure.

Select the uploaded import from the backups list and click restore to begin importing the database to your Northflank MongoDB addon. All user data in the existing MongoDB database on Northflank will be erased before importing the contents of the dump file.

You can click on a restore listed in a backup to view the logs of the restoration, and you will be able to see in the backups list and the list of restores whether or not the restoration was successful.

You can now double-check that the import has run as you expected it to by accessing the addon via the mongo shell or a GUI tool.

note

Northflank will copy your collections to the default Northflank-generated database when importing from a dump. You can find the name of the default database in your Northflank addon's connection details as DATABASE.

Import from connection string

You can import a database from your source MongoDB instance by providing a connection string . Navigate to the backups page of your Northflank MongoDB addon and select import backup.

Enter a recognisable name and select connection string as the import method, and provide the connection string for your source database, which must be publicly available. The connection string will take the format:

## Standalone
mongodb://<USER><:PASSWORD>@<HOST><:PORT>/<DATABASE>

## Replica set using DNS seed list
mongodb+srv://<USER><:PASSWORD>@<HOST><:PORT></DATABASE>?replicaSet=<REPLICA_SET>

When you start the import, Northflank will create a dumps of the specified database. After importing, select the new import from the backups list and click restore to begin importing the database to your Northflank MongoDB addon. Your database will be imported to the default Northflank-generated database, the database name can be found in your addon's connection details as DATABASE.

You can now double-check that the import has run as you expected it to by accessing the addon via a GUI, or forward it using the Northflank CLI to connect locally. If you need to make any changes you can connect to your Northflank MongoDB addon using the admin URI connection strings, or by using the ADMIN_USERNAME and ADMIN_PASSWORD login details.

© 2024 Northflank Ltd. All rights reserved.