centos6.5 64练手安装memcached,PHP调试

思路  先安装 memcached  然后安装php的基于扩展libmemcache ,然后安装php memcache扩展包,然后把扩展添加到php.ini

1 yum安装 简单方便

yum install memcached

安装完毕了

2 查看下

memcached -h

3 把memcached加入 启动列表

#chkconfig --level 2345 memcached on

4 配置memcached文件:

#vi /etc/sysconfig/memcached

分别代表端口号、用户名、同时最大连接数、使用的内存大小和附加的参数。

5 可以通过以下命令查看memcached状态:

#memcached-tool 127.0.0.1:11211 stats

然后安装libmemcached

1

yum install libmemcached

然后安装php-memcache扩展

yum源没有

自己下载

wget http://pecl.php.net/get/memcache-3.0.8.tgz
tar zxvf memcache-3.0.8.tgz

用 phpize 安装

./configure

make & make install

时间: 2024-10-27 12:36:47

centos6.5 64练手安装memcached,PHP调试的相关文章

centos6.5 64位下安装私有npm

搭建自己的私有npm库 1.安装Couchdb [[email protected]_private ~]# yum install wget [[email protected]_private ~]# wget http://download.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm [[email protected]_private ~]# rpm -ivh --test epel-release-6-

centos6.5 64 源码安装redis服务,建立可远程连接的redis数据库

安装环境:centos6.5 64位 使用的包:redis-2.8.19.tar.gz  tcl8.6.3-src.tar.gz 包的下载链接:http://downloads.sourceforge.net/tcl/tcl8.6.3-src.tar.gz http://download.redis.io/releases/redis-2.8.19.tar.gz 本次安装的目录/home/hadoop/redis为任意目录 代码实现: 1,安装需要的支持环境 su root cd /home/h

win8(64位)下安装Memcached

最近在学习Memcached,看了比较多的blog,关于Memcached的.引用一句比较经典的话:老兵不死,只是慢慢凋零.经典总是有值得学习的地方. 首先还是来讲一下win8 64位中的memcached安装. 第一步:在php文件夹中的ext文件夹中增加一个php_memcache.dll,拓展 第二步:在php.ini中添加一条extension=php_memcache.dll,并且重启wamp(重启环境) 第三步:下载memcached,并且安装 在win8中,进入命令行模式,打开从C

吐血贡献——centos6.5 64位静默安装oracle 10G R2

操作系统:CentOS release 6.5 (Final) 64位 oracle版本:Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - 64bit 一.下载必须安装包: # yum -y install binutils compat-libstdc++-33 compat-libstdc++-33.i686 elfutils-libelf elfutils-libelf-devel gcc gcc-c++ glibc g

centos6.5 64位 openvpn安装配置(转)

查看系统版本cat /etc/redhat-releaseCentOS release 6.5 (Final) 查看内核和cpu架构uname -rm2.6.32-431.el6.x86_64 x86_64 查看ipifconfigeth0 Link encap:Ethernet HWaddr 08:00:27:5E:DF:74 inet addr:xxx.xxx.xxx.xxx Bcast:xxx.xxx.xxx.255 Mask:255.255.255.0 inet6 addr: fe80:

centos6.5 64位 openvpn安装配置

1 查看系统版本 2 cat /etc/redhat-release 3 CentOS release 6.5 (Final) 4 5 查看内核和cpu架构 6 uname -rm 7 2.6.32-431.el6.x86_64 x86_64 8 9 查看ip 10 ifconfig 11 eth0 Link encap:Ethernet HWaddr 08:00:27:5E:DF:74 12 inet addr:xxx.xxx.xxx.xxx Bcast:xxx.xxx.xxx.255 Mas

centos6.4 64位下安装nfs文件共享系统

不知道谁装的服务器,默认自带,以下内容摘自互联网,配置部分按教程执行成功 一.环境介绍: 服务器:centos 192.168.1.225 客户端:centos 192.168.1.226 二.安装: NFS的安装配置: centos 5 : yum -y install nfs-utils portmap centos 6(在CentOS 6.3当中,portmap服务由rpcbind负责) : yum -y install nfs-utils rpcbind 三.服务器端配置: 1.创建共享

centos6.6 64位下安装nfs文件共享系统

一.环境介绍: 服务器:centos 192.168.1.1 客户端:centos 192.168.1.22 二.安装: nfs的安装配置: centos 5 : yum -y install nfs-utils portmap centos 6(在CentOS 6.3当中,portmap服务由rpcbind负责) : yum -y install nfs-utils rpcbind 三.服务器端配置: 1.创建共享目录: [[email protected] /]# mkdir /usr/lo

linux(centos6.8 64位)下安装mysql5.7(yum方式)

下载mysql源安装包 # wget http://dev.mysql.com/get/mysql57-community-release-el7-8.noarch.rpm 安装mysql源包 #yum localinstall mysql57-community-release-el7-8.noarch.rpm 检查mysql源是否安装成功 # yum repolist enabled | grep "mysql.*-community.*" 看到下图(三个)表示成功: mysql-