pecl install amqp
出现 checking for amqp using pkg-config... configure: error: librabbitmq not found
这个是缺少rabbitmq-c这个
解决方案 首先你要下载 wget https://github.com/alanxz/rabbitmq-c/archive/v0.9.0-master.tar.gz
解压 然后你会看到一个cmake yum install cmake吧
然后 cmake . -DCMAKE_INSTALL_PREFIX=/root/rabbitmq-c-0.9.0/
指定这玩意之后 make&&make install
pecl install amqp autoselect时候把/root/rabbitmq-c-0.9.0选上就可以安装了
注意这个神坑