Installing ZeroMQ

Hi Alex,

Can you please let me know, if I can install ZeroMQ (XMR support), later , after installation of CMS is complete?

I am following this manual here :
https://xibo.org.uk/manual/en/install_environment.html

I needed the Centos Version of the commands below :

"Installation via apt-get.

sudo add-apt-repository ppa:chris-lea/zeromq
sudo add-apt-repository ppa:alexharrington/php-zmq
sudo apt-get update
sudo apt-get install php5-zmq"

for ZeroMQ - http://zeromq.org/distro:centos
Then compile your own zmq for PHP from

## install
yum install zeromq-devel

## install zmq.so
cd ~
git clone git://github.com/mkoppanen/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 apache

## make sure to update your zeromq config port public 9505 & local 50001 for xibo to work.

We are maintaining one such package for Debian/Ubuntu at https://github.com/ajiwo/xmrd but can be used for CentOS/others as well with some modifications as per native OS commands.

Thanks Yashodhan, This helps.