1200字范文,内容丰富有趣,写作的好帮手!
1200字范文 > CentOS-6.4 安装 PHP Memcached 扩展

CentOS-6.4 安装 PHP Memcached 扩展

时间:2023-07-15 12:01:27

相关推荐

CentOS-6.4 安装 PHP Memcached 扩展

1、获取安装文件包

[root@phpdragon home]# wget /libmemcached/1.0/1.0.18/+download/libmemcached-1.0.18.tar.gz[root@phpdragon home]# wget /get/memcached-2.2.0.tgz

2、安装前编译环境的准备

[root@phpdragon home]# yum install gcc[root@phpdragon home]# yum install gcc-c++ [root@phpdragon home]# yum install zlib[root@phpdragon home]# yum install zlib-devel

3、安装libmemcached

[root@phpdragon home]# tar -zxvf libmemcached-1.0.18.tar.gz[root@phpdragon home]# cd libmemcached-1.0.18[root@phpdragon libmemcached-1.0.18]# whereis memcached //获取memcached的安装目录memcached: /usr/local/bin/memcached[root@phpdragon home]# ./configure -prefix=/usr/local/libmemcached -with-memcached=/usr/local/bin/memcached[root@phpdragon libmemcached-1.0.18]# make && make install[root@phpdragon libmemcached-1.0.18]# whereis libmemcached //获取libmemcached的安装目录libmemcached: /usr/local/libmemcached

4、安装php-memcached

[root@phpdragon home]# tar -zxvf php_memcached-2.2.0.tgz [root@phpdragon home]# cd memcached-2.2.0/ [root@phpdragon memcached-2.2.0]# phpize //显示没有安装phpize -bash: phpize: command not found [root@phpdragon memcached-2.2.0]# yum install php-devel //安装phpize [root@phpdragon memcached-2.2.0]# phpize [root@phpdragon memcached-2.2.0]# ./configure --with-php-config=/usr/bin/php-config --with-libmemcached-dir=/usr/local/libmemcached --disable-memcached-sasl Installing shared extensions: /usr/lib64/php/modules/

vi /etc/php.d/memcached.ini 保存退出

; ----- Enable memcache extension moduleextension=memcached.so; ----- Options for the memcache module; Whether to transparently failover to other servers on errors;memcache.allow_failover=1; Data will be transferred in chunks of this size;memcache.chunk_size=32768 ; Autocompress large data ;press_threshold=20000 ; The default TCP port number to use when connecting to the memcached server ;memcache.default_port=11211 ; Hash function {crc32, fnv} ;memcache.hash_function=crc32 ; Hash strategy {standard, consistent} ;memcache.hash_strategy=consistent ; Defines how many servers to try when setting and getting data. ;memcache.max_failover_attempts=20 ; The protocol {ascii, binary} : You need a memcached >= 1.3.0 to use the binary protocol ; The binary protocol results in less traffic and is more efficient ;memcache.protocol=ascii ; Redundancy : When enabled the client sends requests to N servers in parallel ;memcache.redundancy=1 ;memcache.session_redundancy=2 ; Lock Timeout ;memcache.lock_timeout = 15 ; ----- Options to use the memcache session handler ; Use memcache as a session handler ;session.save_handler=memcache ; Defines a comma separated of server urls to use for session storage ;session.save_path="tcp://localhost:11211?persistent=1&weight=1&timeout=1&retry_interval=15"

重启PHP-fpm

[root@phpdragon home]# service php-fpm start

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。