Cloude Devops Logo Free Clss Will start on Devops from July 15th
Cloud DevOps




MySQL

Introduction to MySQl Database Creation

MySQL : Create Database

This explains how to MySQL’s create a sample database

Create MySQL Database

Once MySQL is installed, connect to it using MySQL root user and create the database as shown below.

# mysql -u root -p

Enter password:

mysql>

After connecting as MySQL root user, execute the following command from the "mysql> " prompt to create a database.

The following command will create the database called "clouddevops".

mysql> create database clouddevops

Use "show databases" command to verify that the database was created successfully.

mysql> show databases;
+--------------------+
| Database           |
+--------------------+
| information_schema |
| mysql              |
|clouddevops         |
+--------------------+
3 rows in set (0.00 sec)












The DevOps seminar will help you to learn DevOps from scracth to deep knowledge of various DevOps tools such as fallowing List.

Linux, Git, Jenkins, Maven, Apache Tomcat, Nexus, Ansible, Chef, Docker, Nagios,   Kubernetes.