amazon · aws · ec2 · services · web

How to Setup Amazon Web Services EC2 Instance



How to Setup Amazon Web Services EC2 Instance with Apache, PHP, MySQL

Instructions:
Go to http://aws.amazon.com/ and create a new account if you do not have an account already.
A credit card or debit is required.

Sign into your AWS account under console management.

Select EC2 and create a new instance.

Choose one of the Ubuntu AMIs, and leave everything default. Under Security groups, create a new security group with SSH and HTTP.
Name your key and download.

Under the terminal, maneuver to the key and chmod 400 to make sure that the permissions are correct.
Under windows, you may have to run as administrator the command prompt or cygwin to chmod properly.
Or you can use the command that I did, which was:
chown :Users testTutorial.pem
Then I did:
chmod 400 testTutorial.pem
Allows only me to read
Then:
ssh -i testTutorial.pem ubuntu@…(public IP)

Once you are on the Ubuntu AMI, you can start to mess around with the packages to install.
I recommend the following: 
Run the command:
sudo apt-get install apache2 libapache2-mod-php5 php5 mysql-server mysql-php5
You can also get phpadmin if you would like.
Remember to restart the apache service:
service apache2 restart

Then, run a secure installation of mysql:
mysql_secure_installation

Go put in your browser the public IP. It works! But what if you want to change the index.html

Well, go cd ../../var/www
In this directory www, you can edit the index.html
sudo vim index.html
You can change the index.html to anything you want using the editor of your choice.

The site changes.

Extra tags: How,to,Setup,Install,Use,Amazon,Web,Serv­ices,EC2,Instance,with,Apache,PHP,MySQL,­Amazon Web Services,Amazon EC2,Elastic Compute Cloud,How to Setup Amazon Web Services EC2,How to Install Amazon Web Services EC2,How to Use EC2,Beginner,Tutorial,How to Install Amazon EC2,How to Setup Amazon Web Services EC2 Instance with Apache,AWS EC2 Instance,Amazon Web Services EC2 instance

http://ift.tt/1B5pKKx

from Blogger http://ift.tt/1Cxf9gE
via IFTTT

One thought on “How to Setup Amazon Web Services EC2 Instance

Leave a comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.