What is MySql and how to use it?
Mysql: Mysql is a open source relational database management system which uses structured query language.It is use to add,access and manage the database.It is quick proccessing,flexible and reliable to use.Now we see how to install it and use it:Step 1: Install Mysql by using yum command. [[email protected]~]# yum -y install mysql-serverStep 2: Once it installed start the mysql [[email protected]~]# /etc/rc.d/init.d/mysqld startStep 3: Set autoboot after rebooting the system. [[email protected]~]#...
Read More