码迷,mamicode.com
首页 > 系统相关 > 详细

Linux下安装memcache扩展

时间:2017-04-13 10:53:01      阅读:255      评论:0      收藏:0      [点我收藏+]

标签:vim   网站   建设   bsp   figure   服务   地址   http   get   

memcache是php的一个扩展模块,安装前应先保证目前具备php环境。
 
先找到phpize的存在目录(如果是通过yum安装的php,则存在于/usr/bin中,如果没找到它们,则#yum install php-devel并重启)
 
解压memcache压缩包后,“进入解压出的文件夹中”。接下来使用phpzie将memcache编译到php扩展模块中。
 
#/usr/bin/phpize
 
#./configure --with-php-config=/usr/bin/php-config
 
(此时如果error: memcache support requires ZLIB报错,则说明没有zlib,可以yum一个,之后重启:#yum install -y zlib.x86_64 zlib-devel.x86_64)
 
检测成功后就可以用make编译memcache了:
 
#make
 
#make install
 
Installing shared extensions:     /usr/lib64/php/modules/
 
(上面的结果表示:扩展将被安装到/usr/lib64/php/modules/目录)
 
最后还需要修改php.ini配置项,过程如下:
 
#vim /etc/php.ini
 
(在700多行找到下面的命令,将注释去掉,有些没有也可手动添加)
 
extension_dir = "/usr/lib64/php/modules/"
extension = "memcache.so"
extension = "pdo_mysql.so"
 
重启服务器
 
可以用#telnet memcached所在服务器ip地址 11211
 
来查看是否可以连接memcached
 
之后可以通过phpinfo函数查看memcache的配置信息
 
原文链接:http://www.wangzhanjianshegs.com/show-16-435-1.html      网站建设

Linux下安装memcache扩展

标签:vim   网站   建设   bsp   figure   服务   地址   http   get   

原文地址:http://www.cnblogs.com/1584779745qq/p/6702829.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!