当前位置:首页 > PHP教程 > php环境安装 > 列表

php安装grpc扩展的具体步骤

发布:smiling 来源: PHP粉丝网  添加日期:2022-05-06 09:54:04 浏览: 评论:0 

在本篇文章里小编给大家整理的是一篇关于php安装grpc扩展的具体步骤,有需要的朋友们可以跟着学习参考下。

1、在php.ini文件中添加grpc扩展配置:extension=grpc.so

  1. git clone -b $(curl -L https://grpc.io/release) https://github.com/grpc/grpc 
  2. cd grpc 
  3. git submodule update --init 
  4. make 
  5. make install 
  6. cd src/php/ext/grpc 
  7. phpize 
  8. ./configure --with-php-config=/usr/local/php/bin/php-config 
  9. make 
  10. make install 
  11. vi /usr/local/php/etc/php.ini 

2、安装 protobuf及其php扩展

  1. cd ../../../../third_party/protobuf 
  2. ./autogen.sh 
  3. ./configure 
  4. make 
  5. make install 
  6. cd php/ext/google/protobuf 
  7. phpize 
  8. ./configure --with-php-config=/usr/local/php/bin/php-config 
  9. make 
  10. make install 
  11. vi /usr/local/php/etc/php.ini 

3、重启php-fpm。

安装中出现的问题:

结果报错了:

Error:src/core/lib/compression/message_compress.lo' failed

这个又是神马情况,在网上搜索了一通,原来是在编码的时候,虚招zlib发现没有这个文件,怎么办?装呗

apt-get install zlib1g-dev

然后在执行以下pecl install grpc发现居然安装上去了,根据安装提示需要将grpc.so添加到php.ini文件中方便查看;

echo "extension=grpc.so" >> /etc/php/7.2/cli/php.ini

记得重启下:service php7.2-fpm restart

查看模块: php -m | grep "grpc"

至此,这个grpc安装完成了!

Tags: php安装grpc扩展

分享到: