ホームページ >バックエンド開発 >PHPチュートリアル >centos php は sasl をサポートするために memcached 拡張機能をインストールします
1. sasl
yum install cyrus-sasl-lib.x86_64yum install cyrus-sasl-devel.x86_64をインストールします
2. libmemcached
wget https://launchpad.net/libmemcached/1.0/1.0.16/+download/libmemcached-1.0.16.tar.gz3 をダウンロードし、コンパイルしてインストールします
tar zxvf libmemcached-1.0.16.tar.gzcd libmemcached-1.0.16./configure --prefix=/usr/local/libmemcached --enable-saslmakemake install4. memcached インストールをインストールします
wget http://pecl.php.net/get/memcached-2.1.0.tgztar zxvf memcached-2.1.0.tgzcd 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 directory --with- libmemcached -dir=/usr/local/libmemcached/ --enable-memcached-sasl
make
make install5. 対応する設定を変更します
追加
vi /etc/php.d/memcache.ini(之前安装过memcache ) 或者直接放到 php.ini 文件内
extension=memcached.somemcached.use_sasl = 1
最後に Web サーバーを再起動します。 nginx または Apache