Installation steps for new users
Installing PHP 7.x for new users
Topics
To install PHP 7 on a Ubuntu server 14.04 LTS AMI (64-bit and 32-bit)
-
Launch a new instance from the AMI.
-
Run the following commands:
sudo apt-get update sudo apt-get install gcc g++
-
Install PHP 7.
sudo yum install php70
-
Download the Amazon ElastiCache Cluster Client.
wget https://elasticache-downloads.s3.amazonaws.com/ClusterClient/PHP-7.0/latest-64bit
-
Extract
latest-64bit
.tar -zxvf latest-64bit
-
With root permissions, copy the extracted artifact file
amazon-elasticache-cluster-client.so
into/usr/lib/php/20151012
.sudo mv artifact/amazon-elasticache-cluster-client.so /usr/lib/php/20151012
-
Insert the line
extension=amazon-elasticache-cluster-client.so
into the file/etc/php/7.0/cli/php.ini
.echo "extension=amazon-elasticache-cluster-client.so" | sudo tee --append /etc/php/7.0/cli/php.ini
-
Start or restart your Apache server.
sudo /etc/init.d/httpd start
To install PHP 7 on an Amazon Linux 201609 AMI
-
Launch a new instance from the AMI.
-
Run the following command:
sudo yum install gcc-c++
-
Install PHP 7.
sudo yum install php70
-
Download the Amazon ElastiCache Cluster Client.
wget https://elasticache-downloads.s3.amazonaws.com/ClusterClient/PHP-7.0/latest-64bit
-
Extract
latest-64bit
.tar -zxvf latest-64bit
-
With root permission, copy the extracted artifact file
amazon-elasticache-cluster-client.so
into/usr/lib64/php/7.0/modules/
.sudo mv artifact/amazon-elasticache-cluster-client.so /usr/lib64/php/7.0/modules/
-
Create the
50-memcached.ini
file.echo "extension=amazon-elasticache-cluster-client.so" | sudo tee --append /etc/php-7.0.d/50-memcached.ini
-
Start or restart your Apache server.
sudo /etc/init.d/httpd start
To install PHP 7 on an SUSE Linux AMI
-
Launch a new instance from the AMI.
-
Run the following command:
sudo zypper install gcc
-
Install PHP 7.
sudo yum install php70
-
Download the Amazon ElastiCache Cluster Client.
wget https://elasticache-downloads.s3.amazonaws.com/ClusterClient/PHP-7.0/latest-64bit
-
Extract
latest-64bit
.tar -zxvf latest-64bit
-
With root permission, copy the extracted artifact file
amazon-elasticache-cluster-client.so
into/usr/lib64/php7/extensions/
.sudo mv artifact/amazon-elasticache-cluster-client.so /usr/lib64/php7/extensions/
-
Insert the line
extension=amazon-elasticache-cluster-client.so
into the file/etc/php7/cli/php.ini
.echo "extension=amazon-elasticache-cluster-client.so" | sudo tee --append /etc/php7/cli/php.ini
-
Start or restart your Apache server.
sudo /etc/init.d/httpd start
Installing PHP 5.x for new users
Topics
- To install PHP 5 on an Amazon Linux AMI 2014.03 (64-bit and 32-bit)
- To install PHP 5 on a Red Hat Enterprise Linux 7.0 AMI (64-bit and 32-bit)
- To install PHP 5 on a Ubuntu server 14.04 LTS AMI (64-bit and 32-bit)
- To install PHP 5 for SUSE Linux enterprise server 11 AMI (64-bit or 32-bit)
- Other Linux distributions
To install PHP 5 on an Amazon Linux AMI 2014.03 (64-bit and 32-bit)
Launch an Amazon Linux instance (either 64-bit or 32-bit) and log into it.
-
Install PHP dependencies:
sudo yum install gcc-c++ php php-pear
Download the correct
php-memcached
package for your Amazon EC2 instance and PHP version. For more information, see Downloading the installation package.Install
php-memcached
. The URI should be the download path for the installation package:sudo pecl install
<package download path>
Here is a sample installation command for PHP 5.4, 64-bit Linux. In this sample, replace
X.Y.Z
with the actual version number:sudo pecl install /home/AmazonElastiCacheClusterClient-
X.Y.Z
-PHP54-64bit.tgzNote
Be sure to use the latest version of the install artifact.
With root/sudo permission, add a new file named
memcached.ini
in the/etc/php.d
directory, and insert "extension=amazon-elasticache-cluster-client.so" in the file:echo "extension=amazon-elasticache-cluster-client.so" | sudo tee --append /etc/php.d/memcached.ini
-
Start or restart your Apache server.
sudo /etc/init.d/httpd start
To install PHP 5 on a Red Hat Enterprise Linux 7.0 AMI (64-bit and 32-bit)
Launch a Red Hat Enterprise Linux instance (either 64-bit or 32-bit) and log into it.
Install PHP dependencies:
sudo yum install gcc-c++ php php-pear
Download the correct
php-memcached
package for your Amazon EC2 instance and PHP version. For more information, see Downloading the installation package.-
Install
php-memcached
. The URI should be the download path for the installation package:sudo pecl install
<package download path>
-
With root/sudo permission, add a new file named
memcached.ini
in the/etc/php.d
directory, and insertextension=amazon-elasticache-cluster-client.so
in the file.echo "extension=amazon-elasticache-cluster-client.so" | sudo tee --append /etc/php.d/memcached.ini
-
Start or restart your Apache server.
sudo /etc/init.d/httpd start
To install PHP 5 on a Ubuntu server 14.04 LTS AMI (64-bit and 32-bit)
Launch an Ubuntu Linux instance (either 64-bit or 32-bit) and log into it.
-
Install PHP dependencies:
sudo apt-get update sudo apt-get install gcc g++ php5 php-pear
-
Download the correct
php-memcached
package for your Amazon EC2 instance and PHP version. For more information, see Downloading the installation package. -
Install
php-memcached
. The URI should be the download path for the installation package.sudo pecl install
<package download path>
Note
This installation step installs the build artifact
amazon-elasticache-cluster-client.so
into the/usr/lib/php5/20121212*
directory. Verify the absolute path of the build artifact, because you need it in the next step.If the previous command doesn't work, you need to manually extract the PHP client artifact
amazon-elasticache-cluster-client.so
from the downloaded*.tgz
file, and copy it to the/usr/lib/php5/20121212*
directory.tar -xvf
<package download path>
cp amazon-elasticache-cluster-client.so /usr/lib/php5/20121212/ -
With root/sudo permission, add a new file named
memcached.ini
in the/etc/php5/cli/conf.d
directory, and insert "extension=<absolute path to amazon-elasticache-cluster-client.so>" in the file.echo "extension=
<absolute path to amazon-elasticache-cluster-client.so>
" | sudo tee --append /etc/php5/cli/conf.d/memcached.ini -
Start or restart your Apache server.
sudo /etc/init.d/httpd start
To install PHP 5 for SUSE Linux enterprise server 11 AMI (64-bit or 32-bit)
-
Launch a SUSE Linux instance (either 64-bit or 32-bit) and log into it.
-
Install PHP dependencies:
sudo zypper install gcc php53-devel
-
Download the correct
php-memcached
package for your Amazon EC2 instance and PHP version. For more information, see Downloading the installation package. -
Install
php-memcached
. The URI should be the download path for the installation package.sudo pecl install
<package download path>
-
With root/sudo permission, add a new file named
memcached.ini
in the/etc/php5/conf.d
directory, and insertextension=
in the file.amazon-elasticache-cluster-client.so
echo "extension=amazon-elasticache-cluster-client.so" | sudo tee --append /etc/php5/conf.d/memcached.ini
-
Start or restart your Apache server.
sudo /etc/init.d/httpd start
Note
If Step 5 doesn't work for any of the previous platforms, verify the install path for
amazon-elasticache-cluster-client.so
. Also, specify the full
path of the binary in the extension. In addition, verify that the PHP in use is a supported
version. We support versions 5.3 through 5.5.
Other Linux distributions
On some systems, notably CentOS7 and Red Hat Enterprise Linux (RHEL) 7.1,
libsasl2.so.3
has replaced libsasl2.so.2
.
On those systems, when you load the ElastiCache cluster client,
it attempts and fails to find and load libsasl2.so.2
.
To resolve this issue, create a symbolic link to libsasl2.so.3
so that when the client attempts to load libsasl2.so.2,
it is redirected to libsasl2.so.3
.
The following code creates this symbolic link.
cd /usr/lib64
sudo ln libsasl2.so.3 libsasl2.so.2