Is there MariaDB or MySQL in XAMPP?

12,937

Solution 1

MariaDB is a drop-in replacement for MySQL so you will see some folders with mysql as name but MariaDB behind it. See https://mariadb.com/kb/en/mariadb/mariadb-vs-mysql-compatibility/ as well...

Solution 2

I've realised the same issue on my Mac. On the web site it says MariaDB is included :

enter image description here

A screenshot from the setup window before installation begins, it says MySQL :

enter image description here

At the slideshow shown during the installation, it said MySQL is included :

enter image description here

This screenshot is from the application :

enter image description here

And lastly, here is what it shows at the terminal :

enter image description here

I still think they should change what is shown on the GUIs :)

Share:
12,937
Evgenij Reznik
Author by

Evgenij Reznik

Updated on June 13, 2022

Comments

  • Evgenij Reznik
    Evgenij Reznik almost 2 years

    I've downloaded and installed XAMPP 5.6.15 for Windows.

    When I click on "what's included?" it says it comes with MariaDB 10.1.9. But in its root directory there is a folder mysql, but no mariadb.

    Also when I execute:

    echo $_SERVER["MYSQL_HOME"];
    

    I get:

    \xampp\mysql\bin
    

    So I assume it still comes with MySQL instead of MariaDB?