本帖最后由 上海分校-小影 于 2018-6-8 14:59 编辑
安装swooleunzip swoole-1.8.5-stable.zip cd swoole-1.8.5-stable phpize ./configuremake && make install 安装redis默认编译完后在当前目录的src目录下。可以复制可执行文件到其他地方: mkdir /usr/local/redis cd src cp redis-benchmark redis-check-aof redis-check-rdb redis-cli redis-sentinel redis-server redis-trib.rb /usr/local/redis 复制配置文件 $ cd redis-3.2.0 $ cp redis.conf /usr/local/redis/ 或者安装的时候指定位置: make PREFIX=/usr/local/redis install 将Redis的命令所在目录添加到系统参数PATH中:
修改profile文件: vi /etc/profile 在最后行追加: export PATH="$PATH:/usr/local/redis/bin" 然后马上应用这个文件: . /etc/profile 这样就可以直接调用redis-cli的命令了 客户端: 2.0安装tar -zxvf 2.2.4 cd phpredis-2.2.4/ phpize ./configure make && make install 3.0安装需要先安装igbinary: tar zxvf igbinary-1.2.1.tgz cd igbinary-1.2.1 phpize ./configure make && make install unzip 3.0.0-rc1 cd phpredis-3.0.0-rc1/
phpize ./configure [--enable-redis-igbinary]make && make install
|