Home  >  Article  >  Backend Development  >  WDCP installation latest mcached

WDCP installation latest mcached

巴扎黑
巴扎黑Original
2016-11-11 14:57:251083browse

Java code

Install sasl first

yum install cyrus-sasl-plain cyrus-sasl cyrus-sasl-devel cyrus-sasl-lib

yum install gcc+ gcc-c++

Java code

#先安装libmemcached  
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 --enable-sasl  
  
make  
  
make install

Java code

yum install zlib-devel  
  
wget http://pecl.php.net/get/memcached-2.2.0.tgz  
  
tar  zxvf  memcached-2.2.0.tgz  
  
cd memcached-2.2.0  
  
/www/wdlinux/php/bin/phpize   
  
./configure -with-libmemcached-dir=/usr/local/libmemcached -enable-memcached-sasl --with-php-config=/www/wdlinux/apache_php-5.4.26/bin/php-config  
  
#--with-php-config php-config文件目录, 在bin下面  
make  
  
make install

Java code

#最后在php.ini中加入  
[memcached]  
extension=memcached.so

Java code

#开启session缓存  
session.save_handler = memcached  
session.save_path = "host"  
extension=memcached.so  
memcached.use_sasl = On  
memcached.sess_binary = On  
memcached.sess_sasl_username = "username"  
memcached.sess_sasl_password = "password"  
memcached.sess_locking = Off


Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn