安装环境:centos7 + php 7.2.19
1. 下载地址:http://pecl.php.net/get/redis-5.0.2.tgz

  1. wget -O /mydata/download/redis-5.0..tgz http://pecl.php.net/get/redis-5.0.2.tgz

2. 解压

  1. tar zxf redis-5.0..tgz

3. 切换到已解压文件目录redis-5.0.2

  1. cd redis-5.0.
  2. ls
  3. arrays.markdown cluster.markdown config.w32 CREDITS library.c README.markdown redis_array_impl.c redis_cluster.c redis_commands.h tests
  4. cluster_library.c common.h COPYING INSTALL.markdown library.h redis_array.c redis_array_impl.h redis_cluster.h redis_session.c
  5. cluster_library.h config.m4 crc16.h liblzf php_redis.h redis_array.h redis.c redis_commands.c redis_session.h

4. 阅读INSTALL.markdown,了解详细的安装步骤与说明

5. 开始安装

  1. # phpize会根据本地的php环境生成configure文件
  2. phpize
  3. Configuring for:
  4. PHP Api Version:
  5. Zend Module Api No:
  6. Zend Extension Api No:
  7.  
  8. # 查看configure帮助信息,了解详细的安装参数
  9. ./configure --help
  10. `configure' configures this package to adapt to many kinds of systems.
  11.  
  12. Usage: ./configure [OPTION]... [VAR=VALUE]...
  13.  
  14. To assign environment variables (e.g., CC, CFLAGS...), specify them as
  15. VAR=VALUE. See below for descriptions of some of the useful variables.
  16.  
  17. Defaults for the options are specified in brackets.
  18.  
  19. Configuration:
  20. -h, --help display this help and exit
  21. --help=short display options specific to this package
  22. --help=recursive display the short help of all the included packages
  23. -V, --version display version information and exit
  24. -q, --quiet, --silent do not print `checking ...' messages
  25. --cache-file=FILE cache test results in FILE [disabled]
  26. -C, --config-cache alias for `--cache-file=config.cache'
  27. -n, --no-create do not create output files
  28. --srcdir=DIR find the sources in DIR [configure dir or `..']
  29.  
  30. Installation directories:
  31. --prefix=PREFIX install architecture-independent files in PREFIX
  32. [/usr/local]
  33. --exec-prefix=EPREFIX install architecture-dependent files in EPREFIX
  34. [PREFIX]
  35.  
  36. By default, `make install' will install all the files in
  37. `/usr/local/bin', `/usr/local/lib' etc. You can specify
  38. an installation prefix other than `/usr/local' using `--prefix',
  39. for instance `--prefix=$HOME'.
  40.  
  41. For better control, use the options below.
  42.  
  43. Fine tuning of the installation directories:
  44. --bindir=DIR user executables [EPREFIX/bin]
  45. --sbindir=DIR system admin executables [EPREFIX/sbin]
  46. --libexecdir=DIR program executables [EPREFIX/libexec]
  47. --sysconfdir=DIR read-only single-machine data [PREFIX/etc]
  48. --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com]
  49. --localstatedir=DIR modifiable single-machine data [PREFIX/var]
  50. --libdir=DIR object code libraries [EPREFIX/lib]
  51. --includedir=DIR C header files [PREFIX/include]
  52. --oldincludedir=DIR C header files for non-gcc [/usr/include]
  53. --datarootdir=DIR read-only arch.-independent data root [PREFIX/share]
  54. --datadir=DIR read-only architecture-independent data [DATAROOTDIR]
  55. --infodir=DIR info documentation [DATAROOTDIR/info]
  56. --localedir=DIR locale-dependent data [DATAROOTDIR/locale]
  57. --mandir=DIR man documentation [DATAROOTDIR/man]
  58. --docdir=DIR documentation root [DATAROOTDIR/doc/PACKAGE]
  59. --htmldir=DIR html documentation [DOCDIR]
  60. --dvidir=DIR dvi documentation [DOCDIR]
  61. --pdfdir=DIR pdf documentation [DOCDIR]
  62. --psdir=DIR ps documentation [DOCDIR]
  63.  
  64. System types:
  65. --build=BUILD configure for building on BUILD [guessed]
  66. --host=HOST cross-compile to build programs to run on HOST [BUILD]
  67. --target=TARGET configure for building compilers for TARGET [HOST]
  68.  
  69. Optional Features and Packages:
  70. --disable-option-checking ignore unrecognized --enable/--with options
  71. --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no)
  72. --enable-FEATURE[=ARG] include FEATURE [ARG=yes]
  73. --with-PACKAGE[=ARG] use PACKAGE [ARG=yes]
  74. --without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no)
  75. --with-libdir=NAME Look for libraries in .../NAME rather than .../lib
  76. --with-php-config=PATH Path to php-config php-config
  77. --enable-redis Enable redis support
  78. --disable-redis-session Disable session support
  79. --disable-redis-json Disable json serializer support
  80. --enable-redis-igbinary Enable igbinary serializer support
  81. --enable-redis-msgpack Enable msgpack serializer support
  82. --enable-redis-lzf Enable lzf compression support
  83. --with-liblzf=DIR Use system liblzf
  84. --enable-shared=PKGS Build shared libraries default=yes
  85. --enable-static=PKGS Build static libraries default=yes
  86. --enable-fast-install=PKGS
  87. Optimize for fast installation default=yes
  88. --with-gnu-ld Assume the C compiler uses GNU ld default=no
  89. --disable-libtool-lock Avoid locking (might break parallel builds)
  90. --with-pic Try to use only PIC/non-PIC objects default=use both
  91. --with-tags=TAGS Include additional configurations automatic
  92.  
  93. Some influential environment variables:
  94. CC C compiler command
  95. CFLAGS C compiler flags
  96. LDFLAGS linker flags, e.g. -L<lib dir> if you have libraries in a
  97. nonstandard directory <lib dir>
  98. LIBS libraries to pass to the linker, e.g. -l<library>
  99. CPPFLAGS (Objective) C/C++ preprocessor flags, e.g. -I<include dir> if
  100. you have headers in a nonstandard directory <include dir>
  101. CPP C preprocessor
  102.  
  103. Use these variables to override the choices made by `configure' or to help
  104. it to find libraries and programs with nonstandard names/locations.
  105.  
  106. Report bugs to the package provider.
  107.  
  108. # 设置配置参数
  109. ./configure \
  110. --with-php-config=/usr/local/php7./bin/php-config \
  111. --enable-redis
  112.  
  113. # 编译与安装
  114. make && make install
  115.  
  116. # 出现下面的信息(部分),说明安装成功
  117. ... ...
  118. ... ...
  119. ----------------------------------------------------------------------
  120. Libraries have been installed in:
  121. /mydata/download/redis-5.0./modules
  122.  
  123. If you ever happen to want to link against installed libraries
  124. in a given directory, LIBDIR, you must either use libtool, and
  125. specify the full pathname of the library, or use the `-LLIBDIR'
  126. flag during linking and do at least one of the following:
  127. - add LIBDIR to the `LD_LIBRARY_PATH' environment variable
  128. during execution
  129. - add LIBDIR to the `LD_RUN_PATH' environment variable
  130. during linking
  131. - use the `-Wl,--rpath -Wl,LIBDIR' linker flag
  132. - have your system administrator add LIBDIR to `/etc/ld.so.conf'
  133.  
  134. See any operating system documentation about shared libraries for
  135. more information, such as the ld() and ld.so() manual pages.
  136. ----------------------------------------------------------------------
  137.  
  138. Build complete.
  139. Don't forget to run 'make test'.
  140.  
  141. Installing shared extensions: /usr/local/php7./lib/php/extensions/debug-non-zts-/

6. 配置php.ini,添加extension=redis.so

  1. ; Redis extension
  2. extension=redis.so

7. 重启php-fpm

  1. service php-fpm restart
  2. Redirecting to /bin/systemctl restart php-fpm.service
  3.  
  4. # php-fpm.service文件位置
  5. /usr/lib/systemd/system/php-fpm.service
  6.  
  7. # php-fpm.service文件内容
  8. [Unit]
  9. Description=The PHP FastCGI Process Manager
  10. After=syslog.target network.target
  11.  
  12. [Service]
  13. Type=simple
  14. PIDFile=/usr/local/php7./var/run/php-fpm.pid
  15. ExecStart=/usr/local/php7./sbin/php-fpm --nodaemonize --fpm-config /usr/local/php7./etc/php-fpm.conf
  16. ExecReload=/bin/kill -USR2 $MAINPID
  17.  
  18. [Install]
  19. WantedBy=multi-user.target

8. 检测redis扩展是否安装成功

  1. # 查看php中已安装模块,显示redis,说明安装成功
  2. php -m|grep redis
  3. redis

9. 关于扩展的使用说明,可以查看:https://github.com/phpredis/phpredis/#classes-and-methods

Centos7下编译安装php扩展redis5.0.2的更多相关文章

  1. CentOS7下编译安装redis-5.0.9

    CentOS7下编译安装redis-5.0.9 本文地址http://yangjianyong.cn/?p=171转载无需经过作者本人授权 下载redis #code start wget https ...

  2. centos7下编译安装php-7.0.15(PHP-FPM)

    centos7下编译安装php-7.0.15(PHP-FPM) 一.下载php7源码包 http://php.net/downloads.php 如:php-7.0.15.tar.gz 二.安装所需依 ...

  3. ubuntu14.04下编译安装ambari-2.4.2.0

    ubuntu14.04下编译安装ambari-2.4.2.0 编译前的准备工作 准备工作有: 系统参数 系统依赖(编译环境) 离线安装包 java环境 maven环境 Nodejs环境 git环境 a ...

  4. Linux centos7下php安装cphalcon扩展的方法

    说明: 操作系统:CentOS7 php安装目录:/usr/local/php php.ini配置文件路径:/usr/local/php/etc/php.ini 运行环境:LNMP ,PHP7 .安装 ...

  5. Centos7下源码编译安装与配置redis5.0

    1.下载redis5.0源码包 wget http://download.redis.io/releases/redis-5.0.5.tar.gz 2.检查是否安装过之前的历史版本 rpm -qa|g ...

  6. centos7下编译安装redis5.05

    准备环境: 1.一台centos7机器,配置没有什么要求(能联网) 2.下载好redis压缩包 下载redis包: 1.登录redis官网: https://redis.io/download 2.选 ...

  7. centos7下编译安装nginx-1.16.0

    一.下载nginx源码 http://nginx.org/en/download.html 如:nginx-1.16.0.tar.gz 二.创建用户和组,并解压 groupadd www userad ...

  8. CentOS7 下编译安装 Samba,什么是 SMB/CIFS 协议

    目录 一.关于 Samba 1. SMB 2. Samba 二.yum 安装 Samba 1. 安装 Samba 2. 查看版本 3. 查看配置文件 4. 启动服务 5. 本地客户端验证 6. Win ...

  9. Linux下编译安装PHP扩展redis

    [Redis] 先安装tcl: yum install tcl [下载和安装] 官网http://redis.io/  下载最新的稳定版本,这里是3.2.0, 然后解压文件并进入. $ sudo ta ...

随机推荐

  1. 英伟达GPU 嵌入式开发平台

    英伟达GPU  嵌入式开发平台 1.         JETSON TX1 开发者组件 JETSON TX1 开发者组件是视觉计算的全功能 开发平台,旨在让您能够快速地安装和运行. 该组件带有 Lin ...

  2. Vue-cli3 环境的搭建

    Vue-cli3 环境的搭建 准备 浏览器插件:Vue.js devtools VsCode 和 VsCode 插件 WebStorm Nodejs vue-cli git 起飞 安装vue-cli3 ...

  3. ELKStack之生产案例(下)

    ELKStack之生产案例(下) 链接:https://pan.baidu.com/s/1V2aYpB86ZzxL21Hf-AF1rA 提取码:7izv 复制这段内容后打开百度网盘手机App,操作更方 ...

  4. Android作业list

    作业1. 请在自己的电脑上完成Android的安装与配置,并完成Hello Android项目.上交自己与项目的合照,将照片传至QQ群中. ------------------------------ ...

  5. Codeforces Round #420 (Div. 2) - C

    题目链接:http://codeforces.com/contest/821/problem/C 题意:起初有一个栈,给定2*n个命令,其中n个命令是往栈加入元素,另外n个命令是从栈中取出元素.你可以 ...

  6. wait与sleep区别?

    wait与sleep区别? 对于sleep()方法,该方法是属于Thread类中的.而wait()方法,则是属于Object类中的. sleep()方法导致了程序暂停执行指定的时间,让出cpu给其他线 ...

  7. IO流 读写文件

    读写文件 如前所述,一个流被定义为一个数据序列.输入流用于从源读取数据,输出流用于向目标写数据. 下图是一个描述输入流和输出流的类层次图. 下面将要讨论的两个重要的流是 FileInputStream ...

  8. JAVA学习笔记--赋值(“=”)

    参考来源:<java编程思想(第四版)> 见第三章3.4节 基本数据类型存储了实际的数值,并非指向一个对象的引用,故其赋值,就是直接将一个地方的内容复制到了另一个地方.例如,对基本数据类型 ...

  9. 前端-PC端瀑布流【10张图】

    .HTML 利用封装的 jquerywaterfall.js 方法 完成 <!DOCTYPE html> <html lang="en"> <head ...

  10. 基于Lucene查询原理分析Elasticsearch的性能

    前言 Elasticsearch是一个很火的分布式搜索系统,提供了非常强大而且易用的查询和分析能力,包括全文索引.模糊查询.多条件组合查询.地理位置查询等等,而且具有一定的分析聚合能力.因为其查询场景 ...