ubuntu-安装phpredis

44次阅读

共计 345 个字符,预计需要花费 1 分钟才能阅读完成。

ubuntu 安装 phpredis
系统 ubuntu(win10 wsl)
准备

 安装 redis: apt install redis;
安装 pecl: apt install php-pear;
phpredis 包用的是 pecl 的: [http://pecl.php.net/package/redis](http://pecl.php.net/package/redis);

安装 phpredis:

 由于在线安装总是有问题安装不了, 我们就先把包下载到本地, 再用 pecl 安装.
下载到本地: wget http://pecl.php.net/get/redis-5.0.2.tgz;
安装: pecl install ./redis-5.0.2.tgz ;
安装完根据提示再 php.ini 添加: extension=redis.so

ok 告成

正文完
 0