天天看點

centos php 安裝memcached 擴充 支援sasl

1.安裝sasl

yum install cyrus-sasl-lib.x86_64
yum install cyrus-sasl-devel.x86_64
           

2.下載下傳libmemcached

wget https://launchpad.net/libmemcached/1.0/1.0.16/+download/libmemcached-1.0.16.tar.gz
           

3,編譯安裝

tar zxvf libmemcached-1.0.16.tar.gz
cd libmemcached-1.0.16
./configure --prefix=/usr/local/libmemcached --enable-sasl
make
make install
           

4.安裝memcached安裝

wget http://pecl.php.net/get/memcached-2.1.0.tgz
tar zxvf memcached-2.1.0.tgz
cd memcached-2.1.0
           
獲得 <pre name="code" class="python">php-config檔案夾 whereis <span style="font-family: Arial, Helvetica, sans-serif;">php-config</span>
           

phpize./configure --with-php-config=php-config檔案夾 --with-libmemcached-dir=/usr/local/libmemcached/ --enable-memcached-sasl

make
           
make install
           

5.改動相應的配置

添加

vi /etc/php.d/memcache.ini(之前安裝過memcache ) 或者直接放到 php.ini 檔案内
           
extension=memcached.so
memcached.use_sasl = 1
           

最後 重新啟動webserver  nginx 或者 apache

轉載于:https://www.cnblogs.com/zhchoutai/p/7116889.html