Skip to content

Instantly share code, notes, and snippets.

@heathdutton
Last active January 12, 2024 07:47
Show Gist options
  • Star 40 You must be signed in to star a gist
  • Fork 19 You must be signed in to fork a gist
  • Save heathdutton/98b00aa90be2ef80c80a5090456c329b to your computer and use it in GitHub Desktop.
Save heathdutton/98b00aa90be2ef80c80a5090456c329b to your computer and use it in GitHub Desktop.
Upgrade PHP to 7.3 on Amazon Linux (specifically for Elastic Beanstalk but should work elsewhere)
#!/usr/bin/env bash
# Upgrade an Amazon Linux EC2 to PHP 7.3
#
# Last tested w/ PHP 7.2 AWS Linux version 2.8.5
#
# Must be ran as sudo:
# sudo bash upgrade-php7.sh
#
# Can be added to ./.ebextensions/20_php.config like so:
# container_commands:
# 20_php7_upgrade:
# command: sudo bash scripts/upgrade-php7.sh
# We will remove instances of PHP matching:
remove=( php56 php70 php71 php72 )
# Prep dependencies.
yum install -y https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm
yum install -y http://rpms.remirepo.net/enterprise/remi-release-7.rpm
yum install -y https://rpmfind.net/linux/centos/7.5.1804/os/x86_64/Packages/scl-utils-20130529-18.el7_4.x86_64.rpm
yum install -y https://rpmfind.net/linux/centos/7.5.1804/os/x86_64/Packages/libedit-3.0-12.20121213cvs.el7.x86_64.rpm
set -e
yum-config-manager --enable epel
yum-config-manager --enable remi-php73
# Clean previous versions of PHP for determinism!
set +e
if [[ ! -z "$remove" ]]
then
for ver in "${remove[@]}"
do
modules=$( rpm -qa --queryformat "%{name}\n" | grep "$ver" )
if [[ ! -z "$modules" ]]
then
echo "Removing $ver"
for module in "${modules[@]}"
do
yum remove $module -y
done
fi
done
fi
# Install PHP 7.3 - Uncommon needs commented out. Uncomment what you need and add dependencies as needed.
set -e
yum install -y php73
# Not yet supportable by this version of Amazon Linux (without significant risk)
# yum install -y php73-php-pecl-ssh2
# yum install -y php73-php-gd
# yum install -y php73-php-pecl-imagick
# yum install -y php73-php-pecl-imagick-devel
# yum install -y php73-php-ast
yum install -y php73-php-bcmath
# yum install -y php73-php-brotli
yum install -y php73-php-cli
yum install -y php73-php-common
# yum install -y php73-php-componere
# yum install -y php73-php-dba
# yum install -y php73-php-dbg
yum install -y php73-php-devel
# yum install -y php73-php-embedded
yum install -y php73-php-enchant
# yum install -y php73-php-fpm
# Gd will require you to build libpng
# yum install -y php73-php-geos
# yum install -y php73-php-gmp
# yum install -y php73-php-horde-horde-lz4
yum install -y php73-php-imap
# yum install -y php73-php-interbase
yum install -y php73-php-intl
# yum install -y php73-php-ioncube-loader
yum install -y php73-php-json
# yum install -y php73-php-ldap
# yum install -y php73-php-libvirt
# yum install -y php73-php-libvirt-doc
# yum install -y php73-php-litespeed
# yum install -y php73-php-lz4
# yum install -y php73-php-maxminddb
yum install -y php73-php-mbstring
yum install -y php73-php-mysqlnd
# yum install -y php73-php-oci8
yum install -y php73-php-odbc
yum install -y php73-php-opcache
yum install -y php73-php-pdo
# yum install -y php73-php-pdo-dblib
yum install -y php73-php-pear
# yum install -y php73-php-pecl-ahocorasick
# yum install -y php73-php-pecl-amqp
yum install -y php73-php-pecl-apcu
yum install -y php73-php-pecl-apcu-bc
# yum install -y php73-php-pecl-apcu-devel
# yum install -y php73-php-pecl-apfd
# yum install -y php73-php-pecl-bitset
# yum install -y php73-php-pecl-cassandra
# yum install -y php73-php-pecl-cmark
# yum install -y php73-php-pecl-couchbase2
# yum install -y php73-php-pecl-crypto
# yum install -y php73-php-pecl-dbase
# yum install -y php73-php-pecl-decimal
# yum install -y php73-php-pecl-dio
# yum install -y php73-php-pecl-druid
# yum install -y php73-php-pecl-ds
# yum install -y php73-php-pecl-eio
# yum install -y php73-php-pecl-env
# yum install -y php73-php-pecl-event
# yum install -y php73-php-pecl-fann
# yum install -y php73-php-pecl-gearman
# yum install -y php73-php-pecl-gender
# yum install -y php73-php-pecl-geoip
# yum install -y php73-php-pecl-geospatial
# yum install -y php73-php-pecl-gmagick
# yum install -y php73-php-pecl-gnupg
# yum install -y php73-php-pecl-grpc
# yum install -y php73-php-pecl-handlebars
# yum install -y php73-php-pecl-hdr-histogram
# yum install -y php73-php-pecl-hprose
# yum install -y php73-php-pecl-hrtime
# yum install -y php73-php-pecl-http
# yum install -y php73-php-pecl-http-devel
yum install -y php73-php-pecl-igbinary
# yum install -y php73-php-pecl-igbinary-devel
# yum install -y php73-php-pecl-inotify
# yum install -y php73-php-pecl-ip2location
# yum install -y php73-php-pecl-json-post
# yum install -y php73-php-pecl-krb5
# yum install -y php73-php-pecl-krb5-devel
# yum install -y php73-php-pecl-leveldb
# yum install -y php73-php-pecl-lua
# yum install -y php73-php-pecl-luasandbox
# yum install -y php73-php-pecl-lzf
yum install -y php73-php-pecl-mcrypt
# yum install -y php73-php-pecl-memcache
# yum install -y php73-php-pecl-memcached
# yum install -y php73-php-pecl-memprof
# yum install -y php73-php-pecl-mogilefs
# yum install -y php73-php-pecl-molten
# yum install -y php73-php-pecl-mongodb
# yum install -y php73-php-pecl-mosquitto
# yum install -y php73-php-pecl-msgpack
# yum install -y php73-php-pecl-msgpack-devel
# yum install -y php73-php-pecl-mustache
# yum install -y php73-php-pecl-mysql
# yum install -y php73-php-pecl-mysql-xdevapi
# yum install -y php73-php-pecl-nsq
yum install -y php73-php-pecl-oauth
# yum install -y php73-php-pecl-oci8
# yum install -y php73-php-pecl-opencensus
# yum install -y php73-php-pecl-parle
# yum install -y php73-php-pecl-pdflib
# yum install -y php73-php-pecl-pq
# yum install -y php73-php-pecl-propro
# yum install -y php73-php-pecl-propro-devel
# yum install -y php73-php-pecl-psr
# yum install -y php73-php-pecl-psr-devel
# yum install -y php73-php-pecl-radius
# yum install -y php73-php-pecl-raphf
# yum install -y php73-php-pecl-raphf-devel
# yum install -y php73-php-pecl-rar
# yum install -y php73-php-pecl-rdkafka
# yum install -y php73-php-pecl-redis4
# yum install -y php73-php-pecl-request
# yum install -y php73-php-pecl-rpminfo
# yum install -y php73-php-pecl-rrd
# yum install -y php73-php-pecl-scrypt
# yum install -y php73-php-pecl-seaslog
# yum install -y php73-php-pecl-selinux
# yum install -y php73-php-pecl-solr2
# yum install -y php73-php-pecl-sphinx
# yum install -y php73-php-pecl-ssdeep
# yum install -y php73-php-pecl-stats
# yum install -y php73-php-pecl-stomp
# yum install -y php73-php-pecl-svm
# yum install -y php73-php-pecl-swoole4
# yum install -y php73-php-pecl-sync
# yum install -y php73-php-pecl-taint
# yum install -y php73-php-pecl-tcpwrap
# yum install -y php73-php-pecl-termbox
# yum install -y php73-php-pecl-timecop
# yum install -y php73-php-pecl-trace
# yum install -y php73-php-pecl-trader
# yum install -y php73-php-pecl-uploadprogress
yum install -y php73-php-pecl-uuid
# yum install -y php73-php-pecl-uv
# yum install -y php73-php-pecl-varnish
# yum install -y php73-php-pecl-vips
# yum install -y php73-php-pecl-vld
# yum install -y php73-php-pecl-xattr
# yum install -y php73-php-pecl-xdebug
# yum install -y php73-php-pecl-xdiff
# yum install -y php73-php-pecl-xlswriter
# yum install -y php73-php-pecl-xmldiff
# yum install -y php73-php-pecl-xmldiff-devel
# yum install -y php73-php-pecl-xxtea
# yum install -y php73-php-pecl-yac
# yum install -y php73-php-pecl-yaconf
# yum install -y php73-php-pecl-yaconf-devel
# yum install -y php73-php-pecl-yaf
# yum install -y php73-php-pecl-yaml
# yum install -y php73-php-pecl-yar
# yum install -y php73-php-pecl-yaz
# yum install -y php73-php-pecl-zip
# yum install -y php73-php-pecl-zmq
# yum install -y php73-php-pggi
# yum install -y php73-php-pgsql
# yum install -y php73-php-phalcon3
yum install -y php73-php-phpiredis
# yum install -y php73-php-pinba
yum install -y php73-php-process
# yum install -y php73-php-pspell
# yum install -y php73-php-recode
# yum install -y php73-php-smbclient
# yum install -y php73-php-snappy
# yum install -y php73-php-snmp
# yum install -y php73-php-snuffleupagus
yum install -y php73-php-soap
# yum install -y php73-php-sodium
# yum install -y php73-php-sqlsrv
# yum install -y php73-php-tidy
# yum install -y php73-php-wkhtmltox
yum install -y php73-php-xml
yum install -y php73-php-xmlrpc
# yum install -y php73-php-zephir-parser
# yum install -y php73-php-zephir-parser-devel
# yum install -y php73-php-zstd
# Link to bash
scl enable php73 bash
# Restart Apache.
service httpd restart
@RogerWebb
Copy link

So, I've run into an issue with PHP 7.1 UUID not existing and noticed you have that line (77) commented out. You ever find a solution for this issue?

@manish-pragma
Copy link

Hi,
getting the following error. Please suggest any solution

Loaded plugins: priorities, update-motd, upgrade-helper
amzn-main | 2.1 kB 00:00:00
amzn-updates | 2.5 kB 00:00:00
1483 packages excluded due to repository priority protections
Resolving Dependencies
--> Running transaction check
---> Package php71-gd.x86_64 0:7.1.17-1.32.amzn1 will be installed
--> Processing Dependency: libwebp.so.4()(64bit) for package: php71-gd-7.1.17-1.32.amzn1.x86_64
--> Finished Dependency Resolution
Error: Package: php71-gd-7.1.17-1.32.amzn1.x86_64 (amzn-updates)
Requires: libwebp.so.4()(64bit)
Available: libwebp-0.3.0-3.5.amzn1.x86_64 (amzn-main)
libwebp.so.4()(64bit)
Installed: libwebp-0.4.3-3.el6.x86_64 (installed)
~libwebp.so.5()(64bit)
You could try using --skip-broken to work around the problem
You could try running: rpm -Va --nofiles --nodigest
You have new mail in /var/spool/mail/ec2-user

@heathdutton
Copy link
Author

@manish-ip This is one of those gists I made for myself having no idea others would use it... I haven't seen that issue, it may be a platform version issue. Have you tried --skip-broken to get around it?

@skynet
Copy link

skynet commented Dec 29, 2018

@manish-ip run yum install php73 NOT yum install php

@curtisbelt
Copy link

For others trying to use you'll have to update these two lines. Here is the latest as of my posting but they can change. Just search on rpmfind.net.

yum install -y https://rpmfind.net/linux/centos/7.6.1810/os/x86_64/Packages/scl-utils-20130529-19.el7.x86_64.rpm
yum install -y https://rpmfind.net/linux/centos/7.6.1810/os/x86_64/Packages/libedit-3.0-12.20121213cvs.el7.x86_64.rpm

@sunil951
Copy link

sunil951 commented Feb 9, 2019

--> Finished Dependency Resolution
Error: Package: php73-runtime-1.0-0.1.el7.remi.x86_64 (remi-safe)
Requires: scl-utils
You could try using --skip-broken to work around the problem
You could try running: rpm -Va --nofiles --nodigest

I am getting above error.

@dtanay2004
Copy link

I am getting this following error when I am running this script:

Error: Package: php73-common-7.3.5-1.15.amzn1.x86_64 (amzn-updates)
Requires: php73-json(x86-64)
Available: php73-json-7.3.2-1.13.amzn1.x86_64 (amzn-updates)
php73-json(x86-64) = 7.3.2-1.13.amzn1
Available: php73-json-7.3.4-1.14.amzn1.x86_64 (amzn-updates)
php73-json(x86-64) = 7.3.4-1.14.amzn1
Available: php73-json-7.3.5-1.15.amzn1.x86_64 (amzn-updates)
php73-json(x86-64) = 7.3.5-1.15.amzn1
You could try using --skip-broken to work around the problem
You could try running: rpm -Va --nofiles --nodigest

any help?

@tigerwk110
Copy link

Error: Package: php73-php-cli-7.3.9-1.el7.remi.x86_64 (remi-safe)
Requires: libcrypto.so.10(OPENSSL_1.0.2)(64bit)
You could try using --skip-broken to work around the problem
You could try running: rpm -Va --nofiles --nodigest

@heathdutton

@edilsoncichon
Copy link

@heathdutton @skynet,
Is this script still working for you? I'm getting the error below, do you have any ideas for solving this? Thanks!

# yum install -y php73

Loaded plugins: priorities, update-motd, upgrade-helper
915 packages excluded due to repository priority protections
Resolving Dependencies
[...]
**Package php73-json is obsoleted by php-common, but obsoleting package does not provide for requirements**
---> Package php73-process.x86_64 0:7.3.6-1.17.amzn1 will be installed
---> Package php73-xml.x86_64 0:7.3.6-1.17.amzn1 will be installed
--> Finished Dependency Resolution
Error: Package: php73-common-7.3.6-1.17.amzn1.x86_64 (amzn-updates)
           Requires: php73-json(x86-64)
           Available: php73-json-7.3.2-1.13.amzn1.x86_64 (amzn-updates)
               php73-json(x86-64) = 7.3.2-1.13.amzn1
           Available: php73-json-7.3.4-1.14.amzn1.x86_64 (amzn-updates)
               php73-json(x86-64) = 7.3.4-1.14.amzn1
           Available: php73-json-7.3.5-1.15.amzn1.x86_64 (amzn-updates)
               php73-json(x86-64) = 7.3.5-1.15.amzn1
           Available: php73-json-7.3.6-1.17.amzn1.x86_64 (amzn-updates)
               php73-json(x86-64) = 7.3.6-1.17.amzn1
 You could try using --skip-broken to work around the problem
 You could try running: rpm -Va --nofiles --nodigest

@boxtreeclinic
Copy link

yes - I get the same error as cichondev - any update on a solution?

@ortegaangelo
Copy link

For others trying to use you'll have to update these two lines. Here is the latest as of my posting but they can change. Just search on rpmfind.net.

yum install -y https://rpmfind.net/linux/centos/7.6.1810/os/x86_64/Packages/scl-utils-20130529-19.el7.x86_64.rpm
yum install -y https://rpmfind.net/linux/centos/7.6.1810/os/x86_64/Packages/libedit-3.0-12.20121213cvs.el7.x86_64.rpm

Try:
yum install -y https://rpmfind.net/linux/centos/6.10/os/x86_64/Packages/scl-utils-20120927-29.el6_9.x86_64.rpm
yum install -y https://rpmfind.net/linux/centos/7.6.1810/os/x86_64/Packages/libedit-3.0-12.20121213cvs.el7.x86_64.rpm

@jschroed91
Copy link

For others trying to use you'll have to update these two lines. Here is the latest as of my posting but they can change. Just search on rpmfind.net.

yum install -y https://rpmfind.net/linux/centos/7.6.1810/os/x86_64/Packages/scl-utils-20130529-19.el7.x86_64.rpm
yum install -y https://rpmfind.net/linux/centos/7.6.1810/os/x86_64/Packages/libedit-3.0-12.20121213cvs.el7.x86_64.rpm

Try:
yum install -y https://rpmfind.net/linux/centos/6.10/os/x86_64/Packages/scl-utils-20120927-29.el6_9.x86_64.rpm
yum install -y https://rpmfind.net/linux/centos/7.6.1810/os/x86_64/Packages/libedit-3.0-12.20121213cvs.el7.x86_64.rpm

For second link, if you get an error, try:

yum install -y https://rpmfind.net/linux/centos/7.7.1908/os/x86_64/Packages/libedit-3.0-12.20121213cvs.el7.x86_64.rpm

@edilsoncichon
Copy link

edilsoncichon commented Jan 21, 2020

Now ElasticBeanStalk supports PHP 7.3. I think it's a better option.

@heathdutton
Copy link
Author

Now ElasticBeanStalk supports PHP 7.3. I think it's a better option.

Agreed!

@armetiz
Copy link

armetiz commented Jan 22, 2020

ElasticBeanstalk support PHP73 but few PHP Extensions; ie: php73-pecl-redis is not available.

@edilsoncichon
Copy link

ElasticBeanstalk support PHP73 but few PHP Extensions; ie: php73-pecl-redis is not available.

I created a new environment with PHP7.3 default, and don't installed any extension. I am using Redis and it's working fine for me. :)

@armetiz
Copy link

armetiz commented Jan 23, 2020

you made me doubt,
on a fresh PHP7.3 installation

php -m | grep -i redis | wc -l
0

Maybe you're using a PHP Redis implementation: predis.
Our application is using PHP Extension: PhpRedis

@edilsoncichon
Copy link

Sorry @armetiz, I did know about that difference.

@neoacevedo
Copy link

For php73-pecl-memcached I get the following error:

Error: Package: libmemcached-opt-libs-1.0.18-2.el7.remi.x86_64 (remi-safe)
  Requires: libsasl2.so.3()(64bit)
  You could try using --skip-broken to work around the problem
  You could try running: rpm -Va --nofiles --nodigest

@neoacevedo
Copy link

Now ElasticBeanStalk supports PHP 7.3. I think it's a better option.

But it doesn't have the PHP memcached extension so, to use elasticache will be a big headache.

@furic
Copy link

furic commented Dec 17, 2020

Cannot open: https://rpmfind.net/linux/centos/7.5.1804/os/x86_64/Packages/scl-utils-20130529-18.el7_4.x86_64.rpm. Skipping.

@ovc
Copy link

ovc commented Mar 17, 2021

Cannot open: https://rpmfind.net/linux/centos/7.5.1804/os/x86_64/Packages/scl-utils-20130529-18.el7_4.x86_64.rpm. Skipping.

yum install -y https://rpmfind.net/linux/centos/7/os/x86_64/Packages/scl-utils-20130529-19.el7.x86_64.rpm

@incheon-kim
Copy link

it just works like charm on amzn1 (2018.03). thanks.

yum install -y https://rpmfind.net/linux/centos/7.5.1804/os/x86_64/Packages/scl-utils-20130529-18.el7_4.x86_64.rpm
yum install -y https://rpmfind.net/linux/centos/7.5.1804/os/x86_64/Packages/libedit-3.0-12.20121213cvs.el7.x86_64.rpm

should be

yum install -y https://rpmfind.net/linux/centos/7/os/x86_64/Packages/scl-utils-20130529-18.el7_4.x86_64.rpm
yum install -y https://rpmfind.net/linux/centos/7/os/x86_64/Packages/scl-utils-20130529-19.el7.x86_64.rpm

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