Category

AWS

Category

Step 1: Prepare the LAMP Server A) Connect with instance Command: chmod 400 pemfile_name.pem ssh -i “pemfile_name.pem” ec2-user@public_dns Example: ssh -i “pemfile_name.pem” [email protected] B) Now check software is updated Command: sudo yum update -y C) Now we need to install apcahe server, MySql, and and PHP software packages. Command: sudo yum install -y httpd24 php70 mysql56-server php70-mysqlnd D) start Apcahe web Server Command: sudo service httpd start E) Now run chkconfig command to configure the…