You are on page 1of 5

DOWNLOAD MARIADB FOR WINDOWS 7

Go to AskMonty for latest version of MariaDB.


MariaDB available in two version : installer and zip type.
Get installer version since this version is much smaller than zip one.

INSTALL MARIADB ON WINDOWS 7


Double installer to start install process.
Klik Next.

Klik I Agree to accept License Agreement.

Destination Folder
Pilih C:\mariadb sebagai destination folder kemudian klik Next.

Klik Next.

Pilih tipe install Normal kemudian klik Install.

Tunggu sampai proses install selesai.

Klik Finish.

START MARIADB ON WINDOWS 7


Buka command line :

C:\Users\LAPTOP>cd c:\mariadb\bin
c:\mariadb\bin>net start mariadb
The mariadb service is starting..
The mariadb service was started successfully.
c:\mariadb\bin>mysql -uroot -p
Enter password:
Welcome to the MariaDB monitor. Commands end with ; or \g.
Your MariaDB connection id is 1
Server version: 5.2.3-MariaDB Source distribution
MariaDB [(none)]> show databases;
++
| Database
|
++
| information_schema |
| mysql
|
| test
|
++
3 rows in set (0.00 sec)
MariaDB [(none)]> use mysql;
Database changed
MariaDB [mysql]>exit
Success. MariaDB successfully installed on my Windows 7.

You might also like