Skip to content

Instantly share code, notes, and snippets.

@mavieth
Created May 2, 2017 01:38
Show Gist options
  • Star 39 You must be signed in to star a gist
  • Fork 17 You must be signed in to fork a gist
  • Save mavieth/b6b3b622dd9f863ca2c7db2da04ab215 to your computer and use it in GitHub Desktop.
Save mavieth/b6b3b622dd9f863ca2c7db2da04ab215 to your computer and use it in GitHub Desktop.
Upgrade from PHP 5.X.X to PHP 7 on an AWS EC2 Linux Server
#!/bin/bash
echo "==============================="
echo "Installing PHP 7"
echo "==============================="
sudo yum install php70
echo "==============================="
echo "Installing PHP 7 additional commonly used php packages"
echo "==============================="
sudo yum install php70-gd
sudo yum install php70-imap
sudo yum install php70-mbstring
sudo yum install php70-mysqlnd
sudo yum install php70-opcache
sudo yum install php70-pecl-apcu
echo "==============================="
echo "Linking PHP 7"
echo "==============================="
sudo ln -sf /etc/httpd/conf.d/php-conf.7.0 /etc/alternatives/php.conf
sudo ln -sf /etc/httpd/conf.modules.d/15-php-conf.7.0 /etc/alternatives/10-php.conf
echo "==============================="
echo "Choose PHP 7 as an Alternative"
echo "==============================="
sudo alternatives --config php
@alangumer
Copy link

Useful, thanks!

@gbutiri
Copy link

gbutiri commented May 10, 2019

Few hiccups, but those were on my end. Great job! Thank you!! As an alternative, I would offer the command line sudo update-alternatives --config php

@fmangat
Copy link

fmangat commented Dec 19, 2019

thank you so much

@mavieth
Copy link
Author

mavieth commented Dec 19, 2019

thank you so much

No problem I'am glad that you found it useful!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment