Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save emresaracoglu/46271cfd25a64930db06ffb4aaa3526d to your computer and use it in GitHub Desktop.
Save emresaracoglu/46271cfd25a64930db06ffb4aaa3526d to your computer and use it in GitHub Desktop.
Install zmq centos 7 and PHP Extension
## install
yum install zeromq-devel
## install zmq.so
cd ~
git clone https://github.com/zeromq/php-zmq.git
cd php-zmq
phpize && ./configure
make && make install
## add extension to php
cd ~/php-zmq
mv modules/zmq.so /usr/lib64/php/modules
vim /etc/php.d/20-zmq.ini (extension=zmq.so)
## restart fpm
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment