MariaDB is an open-source relational database that serves as a fork of the popular MySQL database. Originating from MySQL's original developers, MariaDB is known for its enhanced performance and robustness, making it a preferred choice for many developers.
Installing MariaDB on Windows is straightforward, thanks to the MSI package provided by the MariaDB Foundation. The package contains all the necessary tools, binaries, and libraries required for a smooth installation process.
While the process is quite intuitive, following the steps closely ensures that MariaDB is correctly installed, and its services are properly set up to start automatically with Windows.
This is the administrative account for the database, ensure you remember or store this password securely.
$ mysql -u root -p
After launching the shell, you'll be prompted to enter the root password you set during the installation.
MariaDB [(none)]> SELECT VERSION();
Congratulations, you've successfully installed MariaDB on your Windows system! With MariaDB now installed, you can start building, testing, and deploying your database applications with ease.
Comment anonymously. Login not required.