memcached安装和php扩展memcache安装
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了memcached安装和php扩展memcache安装相关的知识,希望对你有一定的参考价值。
1.准备安装包:
libevent-2.1.8-stable.tar.gz
memcached-1.5.0.tar.gz
memcache-2.2.7.tgz
2.安装libevent
tar xf /opt/libevent-2.1.8-stable.tar.gz
cd libevent-2.1.8-stable
mkdir /usr/local/libevent
./configure --prefix=/usr/local/libevent
make && make install
echo $?
3.安装memcached
tar xf memcached-1.5.0.tar.gz -C /opt/
mkdir /usr/local/memcached
cd /opt/memcached-1.5.0
./configure --prefix=/usr/local/memcached --with-libevent=/usr/local/libevent
make && make install
id www
memcached参数
-d 选项是启动一个守护进程,
-m 是分配给Memcache使用的内存数量,单位是MB
-u 是运行Memcache的用户,如果当前为 root 的话,需要使用此参数指定用户。
-l 是监听的服务器IP地址
-p 是设置Memcache监听的端口, 最好是1024以上的端口
-c 是最大运行的并发连接数,默认是1024
-P 是设置保存Memcache的pid文件,我这里是保存在 /tmp/memcached.pid
4.普通用户启动memcached:
/usr/local/memcached/bin/memcached -d -u www -m 4096 -l 127.0.0.1 -c 10000 -p 11313 -P /tmp/11313.pid
5.检查服务:
[[email protected] memcached-1.5.0]# netstat -lp | grep memcached
tcp 0 0 localhost:11313 *:* LISTEN 19688/memcached
udp 0 0 localhost:11313 *:* 19688/memcached
6.安装php扩展memcache
tar xf /opt/memcache-2.2.7.tgz -C /opt/
cd /opt/memcache-2.2.7
find / -name "php-config"
/usr/local/php/bin/phpize
./configure --enable-memcache=/usr/local/memcached --with-php-config=/usr/local/php/bin/php-config
make &&make install
[[email protected] vhost]# tail -2 /usr/local/php/etc/php.ini
[memcache]
extension = memcache.so
[[email protected] vhost]# tail -2 /usr/local/php/etc/php.ini
[memcache]
extension = memcache.so
7.测试:
cat test.php
<?php
phpinfo()
?>
本文出自 “10931853” 博客,请务必保留此出处http://wujianwei.blog.51cto.com/10931853/1961541
以上是关于memcached安装和php扩展memcache安装的主要内容,如果未能解决你的问题,请参考以下文章
memcache安装以及php_memcache.dll 扩展安装
ubuntu下安装memcached和PHP的memcache扩展
CentOS 6.6 安装 PHP Memcached 扩展