Last active
June 20, 2021 15:35
-
-
Save mikepfeiffer/c0c3b32287a25404122331c7d37f3973 to your computer and use it in GitHub Desktop.
Setup Apache on Amazon Linux
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
#!/bin/bash | |
yum update -y | |
yum install -y httpd24 php70 mysql php70-mysqlnd | |
service httpd start | |
chkconfig httpd on | |
usermod -a -G apache ec2-user | |
sudo chown -R ec2-user:apache /var/www | |
sudo chmod 2775 /var/www |
@nicholaschaung @Chainshark the yum install -y httpd24 php70 mysql php70-mysqlnd
command works fine on an Amazon Linux AMI instance.
[root@ip-10-0-0-60 ec2-user]# cat /etc/os-release
NAME="Amazon Linux AMI"
VERSION="2018.03"
ID="amzn"
ID_LIKE="rhel fedora"
...
You might want to check if your Linux instance has yum
installed.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
WordPress requires PHP 7, on EC2 using Amazon Linux instance, this command will install PHP 5.