Skip to content

Instantly share code, notes, and snippets.

@Mrkisha
Created December 14, 2014 13:20
Show Gist options
  • Save Mrkisha/4040f447f4870d2cbb6f to your computer and use it in GitHub Desktop.
Save Mrkisha/4040f447f4870d2cbb6f to your computer and use it in GitHub Desktop.
Install ZeroMQ 0mz on ubuntu
#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