Build qpid-cpp on Fedora 32

The other day, I wanted to produce and consume some AMQP messages in order to test some behaviors of Apache QPID Dispatch Router and Apache ActiveMQ Artemis. I remembered qpid-send and qpid-receive CLI tools are useful for this, but I couldn't find a package that included them in order to get them running on my Fedora workstation.

Here are the steps I took to compile and install from source:

sudo dnf install cmake nss-devel

git clone git@github.com:apache/qpid-cpp.git

cd qpid-cpp

mkdir bld

cd bld

cmake ..

make all

sudo make install

After installing, the tools were available on my path.

qpid-send --help

qpid-receive --help

comments powered by Disqus