Linux安装php扩展memcache

Linux安装php扩展memcache

php扩展memcache的作用是为了支持memcached数据库缓存服务器,下面是安装方法。
1、下载并解压memcache文件

  1. wget -c http://pecl.php.net/get/memcache-3.0.6.tgz
  2. tar xzvf memcache-3.0.6.tgz
  3. cd memcache-3.0.6

2、执行phpize扩展安装程序,假设phpzie的路径为/usr/local/php/bin/phpize,具体的路径得根据自己的环境修改。

  1. /usr/local/php/bin/phpize

3、开始安装扩展memcache

  1. ./configure --enable-memcache --with-php-config=/usr/local/php/bin/php-config --with-zlib-dir
  2. make && make install

4、最后修改php.ini文件,在zend之前加入如下代码。

  1. [memcache]
  2. extension_dir = "/usr/local/php/lib/php/extensions/no-debug-non-zts-20060613/"
  3. extension=memcache.so

转载请标明文章来源:《https://www.centos.bz/2011/11/linux-install-php-memcache/

时间: 2024-10-26 10:19:16

Linux安装php扩展memcache的相关文章

linux 安装oci 扩展

1.下载Oracle即时客户端程序包 - Basic: 运行 OCI.OCCI 和 JDBC-OCI 应用程序所需的所有文件 ①.打开以下网址(本文以32位版为例): (Linux 32位版)http://www.oracle.com/technology/software/tech/oci/instantclient/htdocs/linuxsoft.html (Linux 64位版)http://www.oracle.com/technology/software/tech/oci/inst

Linux安装phpredis扩展

Linux下php安装Redis扩展 注意:目录的权限   chomd 777 -R 1.安装redis 下载:https://github.com/nicolasff/phpredis/archive/2.2.4.tar.gz 上传phpredis-2.2.4.tar.gz到/usr/local/src目录 cd /usr/local/src #进入软件包存放目录 tar zxvf phpredis-2.2.4.tar.gz #解压 cd phpredis-2.2.4 #进入安装目录 /usr

linux安装swoole扩展

1.首先我们要安装swoole扩展的话,需要把它的包下载下来,下载地址是: https://github.com/swoole/swoole-src 2.下载下来之后进行解压: unzip swoole-src-master.zip 3.解压之后打开解压的目录,我是解压在目录/opt下面的,所以 cd /opt/swoole-src-master 4.然后使用phpize重新编译php,执行命令:  /usr/bin/phpize 如果你找不到phpize文件在哪,可以用指令查找,最好在根目录下

linux安装php的memcache扩展方法

下载安装Memcached服务器 yum install libevent-devel wget http://memcached.googlecode.com/files/memcached-1.4.5.tar.gz tar -zxvf memcached-1.4.5.tar.gz ./configure --prefix=/usr/local/memcached --build=i686-pc-linux-gnu 这一步会看到缺少GCC yum install gcc ./configure

linux安装memcached及memcache扩展

一.安装libevent函数库 下载地址:http://libevent.org 默认被安装到:/usr/local/lib目录下 安装memcached之前需要先安装libevent函数库. 可以通过#ls -al /usr/local/lib | grep libevent命令查看是否已安装libevent函数库. 如果没安装,则需下载并安装libevent函数库. 二.安装memcached 下载地址:http://memcached.org 默认被安装到:/usr/local/bin目录

Linux下安装PHP扩展Memcache

memcache 的工作就是在专门的机器的内存里维护一张巨大的hash表,来存储经常被读写的一些数组与文件,从而极大的提高网站的运行效率,减轻后端数据库的读写压力. 实验环境:CentOS 6.6 x86_64 LAMP环境搭建完毕:php版本5.6.8.apache版本2.4.12 1.在安装memcached之前需要安装libevent支持: # wget http://syslab.comsenz.com/downloads/linux/libevent-1.4.12-stable.tar

Linux 安装php扩展 swoole

swoole是一个PHP的异步.并行.高性能网络通信引擎,使用纯C语言编写,提供了PHP语言的异步多线程服务器,异步TCP/UDP网络客户端,异步MySQL,异步Redis,数据库连接池,AsyncTask,消息队列,毫秒定时器,异步文件读写,异步DNS查询. Swoole内置了Http/WebSocket服务器端/客户端.Http2.0服务器端.Swoole可以广泛应用于互联网.移动通信.企业软件.云计算.网络游戏.物联网(IOT).车联网.智能家居等领域. 使用PHP+Swoole作为网络通

linux -小记(3) 问题:linux 安装epel扩展源报错

EPEL提供的软件包大多基于其对应的Fedora软件包,不会与企业版Linux发行版本的软件发生冲突或替换其文件. epel安装对应的rpm包 centos5 32位epel源下载地址: www.lishiming.net/data/attachment/forum/epel-release-5-4_32.noarch.rpm64位下载地址:  www.lishiming.net/data/attachment/forum/epel-release-5-4_64.noarch.rpmcentos

Linux 安装mysqli扩展

1.首先到php的安装包下,下面有一个名为ext的文件,如图: 切换到 cd ext目录 cd mysqli 执行  /usr/local/php-5.6.30/bin/phzie 是因为没有安装 php-devel 我们用yum安装一下 yum install php-devel 再次运行phpize ./configure –prefix=/usr/local/mysqli –with-php-config=/usr/local/php-5.6.30/bin/php-config –with