Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
install_memcached [2018/02/01 14:14]
Lisa Clarke removed
install_memcached [2018/02/01 14:38] (current)
Michael Alegre created redirect
Line 1: Line 1:
-======Installing Memcached====== +#​REDIRECT ​litespeed_wiki:​lsmcd:​install-memcached
-You can install Memcached, or LiteSpeed'​s version of Memcached, LSMCD. +
- +
-=====Install LiteSpeed Memcached===== +
- +
-LSMCD is a high-performance,​ distributed caching system with file-backed shared memory. It's generic in nature, but was originally intended for use in speeding up dynamic web applications by alleviating database load. It is designed as a drop-in replacement for Memcached, however we also have a few features that Memcached does not: High Availability and persistence of data. High Availability means that if one or more of your servers goes down, your data can still be accessed and updated as though it was still up. Persistence of data means that there is no need for a database backend. Whatever you put in LSMCD stays in LSMCD unless you say otherwise. +
- +
-To install LiteSpeed Memcached, please see [[litespeed_wiki:​lsmcd:​installation|Compiling/​Installing LSMCD]]. +
- +
- +
-=====Install Memcached===== +
- +
-====for Centos7==== +
- +
-<​code>​yum ​install ​memcached ​-+
- +
-systemctl start memcached +
- +
-systemctl enable memcached</​code>​ +
- +
- +
-===Verify=== +
- +
-<​code>​telnet 127.0.0.1 11211 +
- +
-stats</​code>​ +
- +
-=====Install PHP extension memcached===== +
- +
-====For Plesk Centos7:​==== +
- +
-===PHP7.0/​7.1/​7.2=== +
- +
-<​code>​yum install -y make plesk-php70-devel plesk-php71-develgcc plesk-php72-devel glibc-devel libmemcached-devel zlib-devel +
- +
-/​opt/​plesk/​php/​7.0/​bin/​pecl install memcached +
- +
-/​opt/​plesk/​php/​7.1/​bin/​pecl install memcached +
- +
-/​opt/​plesk/​php/​7.2/​bin/​pecl install memcached +
- +
-echo "​extension=memcached.so"​ > /​opt/​plesk/​php/​7.0/​etc/​php.d/​memcached.ini +
- +
-echo "​extension=memcached.so"​ > /​opt/​plesk/​php/​7.1/​etc/​php.d/​memcached.ini +
- +
-echo "​extension=memcached.so"​ > /​opt/​plesk/​php/​7.2/​etc/​php.d/​memcached.ini +
- +
-plesk bin php_handler --reread</​code>​ +
- +
- +
-===PHP5.6=== +
- +
-<​code>​yum install -y make plesk-php56-devel gcc glibc-devel libmemcached-devel zlib-devel +
- +
-/​opt/​plesk/​php/​5.6/​bin/​pecl install memcached-2.2.0 +
- +
-echo "​extension=memcached.so"​ > /​opt/​plesk/​php/​5.6/​etc/​php.d/​memcached.ini +
- +
-plesk bin php_handler --reread</​code>​ +
- +
- +
-====For Native LSWS Environment==== +
- +
-<​code>​yum install lsphp56-pecl-memcached lsphp70-pecl-memcached lsphp71-pecl-memcached lsphp72-pecl-memcached</​code>​ +
- +
- +
-====For cPanel:​==== +
- +
-===PHP7.0/​7.1/​7.2=== +
- +
-<​code>​yum install -y libmemcached-devel +
- +
-/​opt/​cpanel/​ea-php70/​root/​usr/​bin/​pecl install memcached +
-/​opt/​cpanel/​ea-php71/​root/​usr/​bin/​pecl install memcached +
-/​opt/​cpanel/​ea-php72/​root/​usr/​bin/​pecl install memcached</​code>​ +
- +
- +
-===PHP5.6=== +
- +
-<​code>​yum install -y libmemcached-devel +
- +
-/​opt/​cpanel/​ea-php56/​root/​usr/​bin/​pecl install memcached-2.2.0</​code>​ +
- +
- +
-===Troubleshooting:​=== +
- +
-If installation returns error messages: +
- +
-<​code>​checking for libmemcached location... configure: error: memcached support requires libmemcached. Use --with-libmemcached-dir=<​DIR>​ to specify the prefix where libmemcached headers and library are located +
-ERROR: `/​root/​tmp/​pear/​memcached/​configure --with-php-config=/​opt/​cpanel/​ea-php71/​root/​usr/​bin/​php-config --with-libmemcached-dir=no'​ failed</​code>​ +
- +
-Please install libmemcached and the memcached extension by compiling from source code  (replace php71 with your php version): +
- +
-<​code>​wget https://​launchpad.net/​libmemcached/​1.0/​1.0.18/​+download/​libmemcached-1.0.18.tar.gz +
-tar zxvf libmemcached-1.0.18.tar.gz +
-cd libmemcached-1.0.18 +
-./configure --prefix=/​usr/​local/​libmemcached +
-# if above failed with error related to SASL , please run "yum install cyrus-sasl*"​ and run: (without #) +
-# ./configure --prefix=/​usr/​local/​libmemcached ​ --enable-sasl +
-make +
-make install +
- +
-wget http://​pecl.php.net/​get/​memcached-3.0.4.tgz +
-tar zxvf memcached-3.0.4.tgz +
-cd memcached-3.0.4 +
-/​opt/​cpanel/​ea-php71/​root/​usr/​bin/​phpize +
-./configure --with-php-config=/​opt/​cpanel/​ea-php71/​root/​usr/​bin/​php-config --with-libmemcached-dir=/​usr/​local/​libmemcached --disable-memcached-sasl +
-# if above failed with error related to SASL , please run "yum install cyrus-sasl*"​ and run: (without #) +
-# ./configure --with-php-config=/​opt/​cpanel/​ea-php71/​root/​usr/​bin/​php-config --with-libmemcached-dir=/​usr/​local/​libmemcached --enable-memcached-sasl +
-make +
-make install +
-echo "​memcached.so"​ > /​opt/​cpanel/​ea-php71/​root/​etc/​php.ini</​code>​ +
- +
-If you have further issues installing the extension on cPanel, please contact [[https://​cpanel.com/​support/​|cPanel support]]. +
-=====Verify:​===== +
- +
-Create a php file in vhost directory, and access it. +
-<​code><?​php +
- +
-phpinfo();​ +
- +
-?></​code>​ +
- +
-Memcached should be shown: +
- +
-{{ :​litespeed_wiki:​cache:​lscwp:​configuration:​cache:​object_cache:​php-memd.jpg?​direct |}} +
- +
  • Admin
  • Last modified: 2018/02/01 14:38
  • by Michael Alegre