Created
December 14, 2014 13:20
-
-
Save Mrkisha/4040f447f4870d2cbb6f to your computer and use it in GitHub Desktop.
Install ZeroMQ 0mz on ubuntu
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
#How to install zmq extention on Ubuntu | |
cd ~/ | |
git clone git://github.com/mkoppanen/php-zmq.git | |
cd php-zmq | |
phpize && ./configure | |
sudo su | |
make && make install | |
cd ~/zmq/php-zmq/modules | |
echo 'extension=zmq.so' | sudo tee /etc/php5/mods-available/zmq.ini | |
sudo php5enmod php-zmq | |
service apache2 restart |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment