Skip to content

Instantly share code, notes, and snippets.

@Vaibhav-Narkhede
Last active August 29, 2015 14:17
Show Gist options
  • Save Vaibhav-Narkhede/31f4d6ca34796e9d2de2 to your computer and use it in GitHub Desktop.
Save Vaibhav-Narkhede/31f4d6ca34796e9d2de2 to your computer and use it in GitHub Desktop.
AWS EC2 Instance Setup on Amazon Linux
sudo su
sudo yum update -y
sudo yum groupinstall -y "Web Server" "MySQL Database" "PHP Support"
sudo yum install -y php-mysql
sudo service httpd start
sudo chkconfig httpd on
sudo yum install -y php
sudo service httpd restart
sudo service mysqld start
sudo chkconfig mysqld on
sudo mysql_secure_installation
sudo yum install git
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment