How to multiple MySQL server running on same Ubuntu server

There are many situations where there is a require where you need to run multiple instances of MySQL on same machine.

Some situations are:

  • test a new MySQL release while leaving an existing production setup undisturbed
  • give different users access to different mysqld servers that they manage themselves

Problem description

I have a machine having 5 products already setup. All products are using MySQL 5.5 as its default database. Now its time to upgrade all but one product to use MySQL 5.6. The table below shows the before and after version requirements of MySQL for various products. Looking at the table we find that all products except product C wants to use MySQL 5.6.

multiple-mysql-requirement

Since all but one products require MySQL 5.6, so lets install it first and then we will work to figure out a way to install MySQL 5.5 as well.

Installing MySQL 5.6

sudo apt-get update
sudo apt-get install mysql-server-5.6 mysql-server-core-5.6 mysql-client-5.6 mysql-client-core-5.6

At this point we have MySQL 5.6 listening at port 3306 (default port)

Approach to solution

There are several approaches with which you can achieve multiple MySQL versions running in same machine. Some of them are

  • Use binaries of specific version
  • Build everything from MySQL source

Issues in above approaches:

Evidently we can only have one version of MySQL setup on the machine using default installation procedure with apt-get. Hence if we try to install one version over other then it will replace the first version and will retain the second version. Hence we cannot have 2 versions of MySQL with default installation procedure.

Building everything from scratch involves a lot of complications at source level. In order to debug any issues that might arise, you should be aware what happens in various scripts/commands that you run. I did spend a day in building from the source but it eventually turned out to be complete waste of time, efforts and debugging.

Docker to the rescue

If we had a container in which we have a MySQL 5.5 installed and if we can publish the container’s port(s) to the host, then we can connect to container’s MySQL just like a local database.

We can have all of the above with Docker. If you dont know what docker is, please read this official What is Docker.

Installing Docker

To install docker on your machine execute following command on your shell.

curl -sSL https://get.docker.com/ | sh

Spin off MySQL 5.5 container

Execute following command and this will download MySQL 5.5 image and will spin off the container. This container will have MySQL 5.5 installed on port 3306. But on host machine port 3310 will be forwarded.

sudo docker run --name mysql-55-container -p 127.0.0.1:3310:3306 \
     -e MYSQL_ROOT_PASSWORD=rootpassword -d mysql:5.5

NOTE: Password for root user is rootpassword, you can change it to anything.

Connect to MySQL 5.5

mysql -u root -p --host=127.0.0.1 --port=3310

Connect to MySQL 5.6

mysql -u root -p

And voila! you have both My SQL 5.5 and MySQL 5.6 installed and running on same machine.

Now you can configure your application product C to use host 127.0.0.1 and port 3310 and thus you have products A, B, D and E running on MySQL 5.6 and product C running on MySQL 5.5.

Courses I teach

Alongside my daily work, I also teach some highly practical courses, with a no-fluff no-nonsense approach, that are designed to spark engineering curiosity and help you ace your career.


System Design Masterclass

A no-fluff masterclass that helps experienced engineers form the right intuition to design and implement highly scalable, fault-tolerant, extensible, and available systems.


Details →

System Design for Beginners

An in-depth and self-paced course for absolute beginners to become great at designing and implementing scalable, available, and extensible systems.


Details →

Redis Internals

A self-paced and hands-on course covering Redis internals - data structures, algorithms, and some core features by re-implementing them in Go.


Details →


Arpit Bhayani

Arpit's Newsletter

CS newsletter for the curious engineers

❤️ by 80000+ readers

If you like what you read subscribe you can always subscribe to my newsletter and get the post delivered straight to your inbox. I write essays on various engineering topics and share it through my weekly newsletter.



Writings and Learnings

Blogs

Bookshelf

Papershelf


Arpit's Newsletter read by 80000+ engineers

Weekly essays on real-world system design, distributed systems, or a deep dive into some super-clever algorithm.