Created
December 13, 2011 02:52
-
-
Save matthewhudson/1470278 to your computer and use it in GitHub Desktop.
Basic EC2 LAMP stack.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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