Migrate Azure WordPress MySQL database to Azure VM

25 Jul

This blog is hosted on my Azure subscription, and was using ClearDB, who provides MySQL instances for Azure websites.  I quickly found out however that the ClearDB instances are only free up to 20mb, at which point they put a write lock on your database and ask for $120/year. For almost the same price I can add another Extra Small Ubuntu VM to my subscription and run all manner of databases without similar size constraints, but I wasn’t sure how to migrate the database over.  Turns out it was pretty easy. So, if you want to move your ClearDB into a new MySQL installation:

Setup a new Ubuntu VM in Azure

I’ll leave the details to you.  I use 14.04 LTS and an Extra Small instance.  After it is created I use Putty to SSH to the VM.

Install MySQL on the VM

This should be as simple as the below apt command.  You’ll be prompted to set a root password.

Migrate the Database from ClearDB to Local

So this is the fun part.  Go to the Azure portal and find your existing ClearDB connection string.  For Azure Websites you can find it under the “Configure” tab when looking at the website.  Mine looked like this:

Now (from our SSH session to our VM) we’ll export that database using mysqldump.  Pull the relevant bits from the connection string, and you’ll be prompted for a password.

And now we’ll create a new database to import it to

And import it (again you’ll be prompted for a password)

Now make a new user and configure permissions as appropriate.  Something like this:

Configure Azure VM Endpoint

You’ll need to go to the Endpoints configuration of your Azure VM in the portal and add an endpoint for MySQL – it will be port 3306.  This exposes that port to other services.

Update Connection String

Now you just need to update your connection string, however it isn’t quite as easy as it may seem.  The connection string that shows up in your website configuration in the Azure UI doesn’t actually appear to be used anywhere.  You’ll instead need to edit the wp-config.php files in your wordpress install.

So FTP into your Azure Website (FTP information should be available in your dashboard).  Find wp-config.php, and you should see definitions at the top of the file that look something like this:

Simply make the appropriate updates, save the file, and you are done!

One Reply to “Migrate Azure WordPress MySQL database to Azure VM”

  1. Hiya,

    a couple of things:

    the addition “gt” requires the installation of the genometools package (not installed as standard with the Ubuntu image) and the lt addition requires looptools (same here) – either way, I am not sure what either of the tools are supposed to do here 🙂

    for the mysqldump i kept getting the error, that dump.sql didn’t exist – seems you’re missing a “>” in the command; Also, the gt part didn’t work for me either, due to the lack of further commands.

    What did appear to work is the following command, taken from the clearDB site:
    mysqldump –single-transaction -u clearDBUser -p -h cleardbHost DBName > dump.sql

    And for the import:
    $ mysql -u username -p -h localhost database_name < dump.sql

    However, the transition hasn't worked so far, my wordpress blog refuses to connect despite following the rest of your guide .(

Leave a Reply

Your email address will not be published. Required fields are marked *