ZeroMQ released 1.0.0 yesterday (congrats!) and I decided to take it for a spin. I needed to create a buildslave anyway and I decided to capture my steps as I installed ZeroMQ. The following steps were completed on an Ubuntu Hardy and Python 2.6.2
I am not sure if it’s necessary or not for my application, but I wanted to include support for both AMQP and Python.
1 2 3 | root@roder:~/src/zmq-1.0.0 # ./configure --with-python --with-amqp root@roder:~/src/zmq-1.0.0 # make root@roder:~/src/zmq-1.0.0 # make install |
After that I was done… time to fire it up
1 | root@roder:~/src/zmq-1.0.0 # zmq_server |
But it returned this error
1 2 | zmq_server: error while loading shared libraries: libzmq.so.1: cannot open shared object file: No such file or directory |
Oh yeah… need to update the libraries. Let me try again:
1 2 | root@roder:~/src/zmq-1.0.0 # ldconfig -v root@roder:~/src/zmq-1.0.0 # zmq_server |
Voila! Now to play with it.
…to be continued.