EX 7a) INSTALLING MYSQL IN AWS

step 1: launch an instance. You can able to see the dashboard of launch an instance.EC2 allows you to create an instances that runs on the AWS cloud. I have given the name as "mysql-server"

step 2: you have successfully launched instance

step 3: connect to your instance

Step 4: After connecting your instance. Give some commands for installing Mysql server in AWS

sudo yum update -y 

sudo yum install -y mariadb-server

sudo systemctl enable mariadb

sudo systemctl start mariadb

sudo mysql_secure_installation

Step 5: create a password for mysql server

step 6: start your mysql server
















Comments