How to install PHP 7.1 on EC2 running on Amazon Linux AMI 2018.03 having nginx as web server?

Viewed 21811

How to install PHP 7.1 on Amazon EC2 t2.micro Instance running Amazon Linux AMI 2018.03 having nginx as web server?

Reference to PHP7

3 Answers

A reliable way to achieve the same output is by following commands on Amazon Linux AMI 2.

# Remove current php & apache
sudo service httpd stop
sudo yum remove httpd* php*

sudo yum install httpd

amazon-linux-extras install php7.1
Related