Install MySql Server and Client phpMyadmin
Steps to Insatll & Secure MySql Server and Install phpmyadmin client Step 1 : Run the below command to install, start, secure MySql server sudo yum update -y sudo yum install -y mysql56-server php70-mysqlnd sudo service mysqld start sudo mysql_secure_installation When prompted, type a password for the root account. i. Type the current root password. By default, the root account does not have a password set. Press Enter. ii. Type Y to set a password, and type a secure password twice. For more information about creating a secure password, see http://www.pctools.com/guides/password/ . Make sure to store this password in a safe place. Note Setting a root password for MySQL is only the most basic measure for securing your database. When you build or install a database-driven application, you typically create a database service user for that application and avoid using the root account for anything but database administration. b. Type Y to remove the a...