librdkafka安裝和php擴展php-rdkafka安裝

1.安裝librdkafkaphp

mac下   brew install librdkafkalinux

linux下git

git clone https://github.com/edenhill/librdkafka.git
cd librdkafka/
./configure
make
sudo make installgithub

2.安裝php擴展spa

max下.net

1.下載phpdebug

2.把下載的php文件放到MAMP/bin/php/php5.6.31/include/php下(include下沒有php文件夾能夠新建一個)code

3.進入MAMP/bin/php/php5.6.31/include/php 而後運行 ./configureblog

4.下載php-rdkafka文件,運行 git clone https://github.com/arnaud-lb/php-rdkafka.gitget

5.進入php-rdkafka目錄,而後運行 ../../../bin/phpize  (若是提示Cannot find autoconf  在mac下運行 brew install autoconf)

6.運行 ./configure --with-php-config=/Applications/MAMP/bin/php/php5.6.31/bin/php-config

(若是提示WARNING: You will need re2c 0.13.4 or later)

wget https://ncu.dl.sourceforge.net/project/re2c/1.0.1/re2c-1.0.1.tar.gz
tar zxf re2c-1.0.1.tar.gz && cd re2c-1.0.1
./configure
make && make install

7.運行sudo make,編譯成功後會在php-rdkafka/modules下生成rdkafka.so,把它複製到/Applications/MAMP/bin/php/php5.6.31/lib/php/extensions/no-debug-non-zts-****這個目錄

8.修改 php.ini,搜索 "extension=" 在後面添加一行"extension=rdkafka.so",保存後重啓 mamp

9.在phpinfo查看是否安裝成功。

linux下

從mac安裝的第4步開始,修改對應的php目錄

相關文章
相關標籤/搜索