Home > Backend Development > PHP Tutorial > centos php 安装memcached 扩展 支持sasl

centos php 安装memcached 扩展 支持sasl

WBOY
Release: 2016-06-23 13:44:57
Original
1049 people have browsed it

1.安装sasl

yum install cyrus-sasl-lib.x86_64yum install cyrus-sasl-devel.x86_64
Copy after login

2.下载libmemcached

wget https://launchpad.net/libmemcached/1.0/1.0.16/+download/libmemcached-1.0.16.tar.gz
Copy after login
3,编译安装
tar zxvf libmemcached-1.0.16.tar.gzcd libmemcached-1.0.16./configure --prefix=/usr/local/libmemcached --enable-saslmakemake install
Copy after login
4.安装memcached安装

wget http://pecl.php.net/get/memcached-2.1.0.tgztar zxvf memcached-2.1.0.tgzcd memcached-2.1.0
Copy after login
获得 <pre name="code" class="python">php-config目录 whereis <span style="font-family: Arial, Helvetica, sans-serif;">php-config</span>
Copy after login
phpize./configure --with-php-config=php-config目录 --with-libmemcached-dir=/usr/local/libmemcached/ --enable-memcached-sasl

make
Copy after login
make install
Copy after login
5.修改对应的配置

增加

vi /etc/php.d/memcache.ini(之前安装过memcache ) 或者直接放到 php.ini 文件内
Copy after login
extension=memcached.somemcached.use_sasl = 1
Copy after login


最后 重启web服务器  nginx 或者 apache







source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template