程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> PHP綜合 >> Linux下php安裝memcache

Linux下php安裝memcache

編輯:PHP綜合

Linux下php安裝memcache
說明:
php安裝目錄:/phpstudy/server/php/bin/php
php.ini配置文件路徑:/phpstudy/server/php/etc/php.ini

1、安裝編譯工具
yum install wget make gcc gcc-c++ zlib-devel openssl openssl-devel pcre-devel kernel keyutils patch perl
2、安裝memcache
cd /usr/local/src #進入軟件包存放目錄
wget http://pecl.php.net/get/memcache-2.2.6.tgz #下載
tar zxvf memcache-2.2.6.tgz #解壓
cd memcache-2.2.6 #進入安裝目錄
/phpstudy/server/php/bin/phpize #用phpize生成configure配置文件
./configure --with-php-config=/phpstudy/server/php/bin/php-config #配置
make #編譯
make install #安裝
安裝完成之後,出現下面的界面,記住以下路徑,後面會用到。
/phpstudy/server/php/lib/php/extensions/no-debug-non-zts-20121212/ #memcache模塊路徑
3、配置php支持memcache
vi /phpstudy/server/php/etc/php.ini #編輯配置文件,在最後一行添加以下內容
extension=memcache.so

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved