Created
May 5, 2013 06:44
-
-
Save hamidreza-s/5519961 to your computer and use it in GitHub Desktop.
Installing AMQP Extension for PHP in CentOS operation system. This will create an amqp.so shared object that needs to be included in your php.ini file. Find the extensions portal of the ini and add “extension=amqp.so”.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ git clone git://github.com/alanxz/rabbitmq-c.git | |
$ cd rabbitmq-c | |
$ git submodule init | |
$ git submodule update | |
$ yum install libtool | |
$ yum install autoconf | |
$ yum install automake | |
$ yum install php-pear | |
$ yum install php-devel | |
$ make | |
$ make install | |
$ pecl install AMQP |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You left out a couple of steps before the make:
autoreconf -i
./configure