How to dump and restore my Scalingo for MySQL® database

There are two ways to dump a distant database and restore the data in your Scalingo database. The first one involves dumping the data on your local workstation and the second one involves doing the same operations from within a Scalingo one-off container (see application tasks).

Dump and Restore From Your Local Workstation

To dump and restore your database from your local workstation, you need the connection string to connect to your database and a way to access your database.

You can get the connection string of your database in your Scalingo application environment. Go to the ‘Environment’ tab of your dashboard or run the following command:

$ scalingo --app my-app env | grep MYSQL

Your database connection string conforms to the syntax of a generic URI:

mysql://<username>:<password>@<host>:<port>/<db>

There are two ways to access your database from your local workstation: setting up a tunnel or making your database accessible from anywhere on the Internet.

Setup the Tunnel

$ scalingo --app my-app db-tunnel SCALINGO_MYSQL_URL
scalingo --app my-app db-tunnel SCALINGO_MYSQL_URL
Building tunnel to my-db.mysql.dbs.scalingo.eu:30000
You can access your database on '127.0.0.1:10000'

In this situation you need to use a different connection string than the one from your application environment. The <host> part is replaced by 127.0.0.1 and the <port> is replaced by 10000.

Internet Accessibility

In order to make your database reachable from anywhere on the internet, head to your database dashboard. You first need to force TLS connections to your database. Then toggle “Internet Accessibility” to make it reachable from the Internet.

In this situation, the connection string to use is exactly the same as the one from your application environment.

Dump

The command definition is:

$ mysqldump -u <username> --password=<password> -h <host> -P <port> --column-statistics=0 <db> > dump.sql

Restore

The command definition is:

$ mysql -u <username> --password=<password> -h <host> -P <port> <db> < dump.sql

Alternatively you can use the phpMyAdmin instance provided by Scalingo. More information in the dedicated page.

Dump and Restore From Scalingo One-off Container

You can dump and restore your database remotely using the command-line-tool and a one-off container (see application tasks). The advantage of this method is the network. From your workstation you don’t always have a good bandwidth. From our infrastructure, data transfers will be way faster.

You need to install the MySQL® CLI tools in the one-off before executing mysqldump or mysql:

$ scalingo --app my-app run bash

[00:00] Scalingo ~ $ dbclient-fetcher mysql

Dump & Restore

$ scalingo --app my-app run bash

[00:00] Scalingo ~ $ dbclient-fetcher mysql
[00:00] Scalingo ~ $ mysqldump -u user --password=pass -h my-db.mysql.a.osc-fr1.scalingo-dbs.com -P 30000 my-db > /tmp/dumped_db.sql
...

# Do something with the dump, i.e.e send through FTP or to an external server

[00:00] Scalingo ~ $ mysql -u my-db --password=pass -h my-db.mysql.a.osc-fr1.scalingo-dbs.com -P 30000 my-db < /tmp/dumped_db.sql
...
[00:00] Scalingo ~ $ exit
exit

After exiting the one-off container, the dump will be lost, you’ve to do something with it in the container.


Suggest edits

How to dump and restore my Scalingo for MySQL® database

©2024 Scalingo