1. 程式人生 > >rabbitmq 安裝的坑。

rabbitmq 安裝的坑。

其他的都還好。 主要是。rabbitmq-c 的安裝。 v0.9版本的沒有提供  tar.gz的原始碼包
這裡下載rabbitmq-c-0.8.0.tar.gz
https://github.com/alanxz/rabbitmq-c/releases/download/v0.8.0/rabbitmq-c-0.8.0.tar.gz

tar -zxvf rabbitmq-c-0.8.0.tar.gz
cd rabbitmq-c-0.8.0
./configure --prefix=/usr/local/rabbitmq-c
make && make install
接下來的是amqp php擴充套件
cd amqp-1.9.3
phpize

./configure --with-php-config=/usr/local/php/bin/php-config

這裡報錯了。 

checking for amqp using pkg-config... configure: error: librabbitmq not found
需要制定相應的庫
./configure --with-php-config=/usr/local/php/bin/php-config --with-amqp --with-librabbitmq-dir=/usr/local/rabbitmq-c
make && make install