一、安裝rabbitmq
brew install rabbitmq
二、安裝rabbitmq-c
git clone git://github.com/alanxz/rabbitmq-c.git
cd rabbitmq-c
mkdir build && cd build
cmake -DCMAKE_INSTALL_PREFIX=/usr/local ..
cmake --build . --target install
出現錯誤:
-- Could NOT find POPT (missing: POPT_INCLUDE_DIR POPT_LIBRARY)
-- Could NOT find XMLTO (missing: XMLTO_EXECUTABLE) -- Could NOT find Doxygen (missing: DOXYGEN_EXECUTABLE) CMake Error at /usr/local/Cellar/cmake/3.6.1/share/cmake/Modules/FindPackageHandleStandardArgs.cmake:148 (message): Could NOT find OpenSSL, try to set the path to OpenSSL root folder in the system variable OPENSSL_ROOT_DIR (missing: OPENSSL_INCLUDE_DIR) (Required is at least version "0.9.8") Call Stack (most recent call first): /usr/local/Cellar/cmake/3.6.1/share/cmake/Modules/FindPackageHandleStandardArgs.cmake:388 (_FPHSA_FAILURE_MESSAGE) /usr/local/Cellar/cmake/3.6.1/share/cmake/Modules/FindOpenSSL.cmake:380 (find_package_handle_standard_args) CMakeLists.txt:273 (find_package)
brew install popt xmlto doxygen openssl
cmake -DCMAKE_INSTALL_PREFIX=/usr/local -DOPENSSL_ROOT_DIR=/usr/local/opt/openssl -DOPENSSL_INCLUDE_DIR=/usr/local/opt/openssl/include ..
上面增加的變量要在前面加-D,含義是設置常量
輸出:
-- Found OpenSSL: /usr/lib/libssl.dylib;/usr/lib/libcrypto.dylib (found suitable version "1.0.2h", minimum required is "0.9.8")
-- Building rabbitmq as a shared library - yes -- Building rabbitmq as a static library - yes -- Configuring done -- Generating done -- Build files have been written to: /Users/baidu/Public/study/amq/rabbitmq-c/build
三、安裝php amqp擴展
通過brew search amqp來搜索當前php版本對應的amqp擴展,我是php 5.5,所以通過
brew install homebrew/php/php55-amqp
安裝