Skip to content

Instantly share code, notes, and snippets.

@matthewhudson
Created December 13, 2011 02:52
Show Gist options
  • Save matthewhudson/1470278 to your computer and use it in GitHub Desktop.
Save matthewhudson/1470278 to your computer and use it in GitHub Desktop.
Basic EC2 LAMP stack.
# Install LAMP.
sudo yum install -y httpd php mysql-server mysql php-mysql
# Start Apache & MySQL.
sudo service httpd start
sudo service mysqld start
# Setup MySQL with root account credentials.
mysqladmin -u root password 'branches'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment