Install MariaDB on Ubuntu 15.04 (Vivid Vervet) Server Using PPA

Sponsored Link
MariaDB is a drop-in replacement for MySQL.MariaDB strives to be the logical choice for database professionals looking for a robust, scalable, and reliable SQL server. To accomplish this, the MariaDB Foundation work closely and cooperatively with the larger community of users and developers in the true spirit of Free and open source software, and release software in a manner that balances predictability with reliability.

Install MariaDB on Ubuntu 15.04 (Vivid Vervet) Server

Open the terminal and run the following commands

For marisDB 10.0

sudo apt-get install software-properties-common

sudo apt-key adv --recv-keys --keyserver hkp://keyserver.ubuntu.com:80 0xcbcb082a1bb943db

sudo add-apt-repository ‘deb http://mirrors.coreix.net/mariadb/repo/10.0/ubuntu vivid main'

Once the key is imported and the repository added you can install MariaDB with the following commands

sudo apt-get update

sudo apt-get install mariadb-server

At the time of installation mariadb would ask for the password of user root. Enter the password and make sure not to forget.

After completing the installation you can check the version using the following command from your terminal

mysql --v

For more details you can check MariaDB documentation

Sponsored Link

You may also like...

1 Response

  1. Every tutorial that I read states that the installer will prompt for the root password. The only prompt that I get is when it can’t set a root password, so it tells me about that. I’m never prompted for the root password to be used. Any ideas? (very frustrated by this MariaDB installation on Ubuntu 15.04.

Leave a Reply

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