install qpid broker in ubuntu/linux

# Update package list
sudo apt update

# Install required dependencies
sudo apt install -y build-essential cmake libssl-dev uuid-dev libtool

# Install Apache Qpid dependencies
sudo apt install -y libboost-all-dev libqpid-proton8 qpid-tools

# Clone Qpid C++ repository
git clone https://gitbox.apache.org/repos/asf/qpid-cpp.git

# Navigate to the Qpid C++ source directory
cd qpid-cpp

# Create a build directory
mkdir build && cd build

# Configure the build
cmake ..

# Build and install Qpid Broker
sudo make && sudo make install

# Start the Qpid Broker
sudo systemctl start qpidd

# Enable Qpid Broker to start on boot
sudo systemctl enable qpidd