1
00:00:00,540 --> 00:00:06,690
Let us connect to the mariadb server so for that, we are going to use the command mysql, although we installed a

2
00:00:06,690 --> 00:00:15,170
package mariadb as a client package, but the available command is mysql, so we have to type mysql.

3
00:00:15,360 --> 00:00:17,650
So when we are going to a type mysql.

4
00:00:17,670 --> 00:00:23,970
So it is directly going to connect to our mariadb server, then the first command that we

5
00:00:23,970 --> 00:00:29,500
are going to run is show databases to check whether it is showing all the databases or not.

6
00:00:29,760 --> 00:00:32,310
So by default, one test database is available.

7
00:00:32,310 --> 00:00:34,430
Another database are also available.

8
00:00:34,800 --> 00:00:37,440
Later on we are going to create our own database.

9
00:00:37,440 --> 00:00:43,420
So let us first check our mariadb server and our client mysql is working properly or not.

10
00:00:43,770 --> 00:00:49,940
So where we are going to do this on master system, so we will go into our master system.

11
00:00:50,340 --> 00:00:59,250
So what command we are going to need, we are just going to need a run this MySQL command, so it is

12
00:00:59,250 --> 00:01:01,960
connected with your Mariadb server.

13
00:01:02,340 --> 00:01:08,250
So now we are going to run one command show databases;.

14
00:01:10,830 --> 00:01:20,690
now, it will show you the currently available databases in this MySQL database.

15
00:01:20,970 --> 00:01:28,900
So, mysql is available test databases available for our purposes for creating php applications.

16
00:01:28,920 --> 00:01:30,650
We need some data for that.

17
00:01:30,660 --> 00:01:33,650
We are going to create our own databases.

18
00:01:34,050 --> 00:01:39,320
So that is the connectivity with our mariadb server

19
00:01:39,570 --> 00:01:40,860
is working
