• librdkafka 安装


      今天在进行php的kafka的扩展安装的时候,出现了没有安装librdkafka distribuction的错误提示,

      进行Phpsize的时候出现如下的提示:

      

    dk@dk-Inspiron-5576:/var/www/html/php-rdkafka$ sudo ./configure 
    checking for grep that handles long lines and -e... /bin/grep
    checking for egrep... /bin/grep -E
    checking for a sed that does not truncate output... /bin/sed
    checking for cc... cc
    checking whether the C compiler works... yes
    checking for C compiler default output file name... a.out
    checking for suffix of executables... 
    checking whether we are cross compiling... no
    checking for suffix of object files... o
    checking whether we are using the GNU C compiler... yes
    checking whether cc accepts -g... yes
    checking for cc option to accept ISO C89... none needed
    checking how to run the C preprocessor... cc -E
    checking for icc... no
    checking for suncc... no
    checking whether cc understands -c and -o together... yes
    checking for system library directory... lib
    checking if compiler supports -R... no
    checking if compiler supports -Wl,-rpath,... yes
    checking build system type... x86_64-pc-linux-gnu
    checking host system type... x86_64-pc-linux-gnu
    checking target system type... x86_64-pc-linux-gnu
    checking for PHP prefix... /usr
    checking for PHP includes... -I/usr/include/php/20151012 -I/usr/include/php/20151012/main -I/usr/include/php/20151012/TSRM -I/usr/include/php/20151012/Zend -I/usr/include/php/20151012/ext -I/usr/include/php/20151012/ext/date/lib
    checking for PHP extension directory... /usr/lib/php/20151012
    checking for PHP installed headers prefix... /usr/include/php/20151012
    checking if debug is enabled... no
    checking if zts is enabled... no
    checking for re2c... no
    configure: WARNING: You will need re2c 0.13.4 or later if you want to regenerate PHP parsers.
    checking for gawk... no
    checking for nawk... nawk
    checking if nawk is broken... no
    checking for rdkafka support... yes, shared
    checking for librdkafka/rdkafka.h" in default path... not found
    configure: error: Please reinstall the rdkafka distribution
    

      需要重新安装这个扩展:

      rdkafka的编译安装:

      git地址:

      参考地址:  https://arnaud-lb.github.io/php-rdkafka/phpdoc/rdkafka.installation.manual.html

           可以考虑使用另外一种解决方案:

      

    sudo apt-get install -y php-rdkafka
    

      问题解决.

  • 相关阅读:
    NSDate的处理:前一天、后一天等关于时区偏移的处理以及在数据库中的使用
    《powershell 的版本号所引起的载入 FSharp 编译器问题》基本解决
    hdu 2055 An easy problem (java)
    昨天登陆页面,无法进入后台,今天攻克了
    关于ubuntu下qt编译显示Cannot connect creator comm socket /tmp/qt_temp.xxx/stub-socket的解决的方法
    (转)Struts2的拦截器
    (转)Struts2的标签库
    (转)OGNL与值栈
    (转)Struts2访问Servlet的API及......
    (转)Struts2快速入门
  • 原文地址:https://www.cnblogs.com/bing-yu12/p/7779831.html
Copyright © 2020-2023  润新知