Comment 4 for bug 1472712

Revision history for this message
Liam Young (gnuoy) wrote : Re: Using SSL with rabbitmq prevents communication between nova-compute and conductor after latest nova updates

If the patches that are carried in the Ubuntu packaging for oslo.messaging are removed and the nova services restarted then ssl + nova + rabbit seems to work.

eg

apt-get install --yes quilt
apt-get source oslo.messaging
cd oslo.messaging-1.3.0/
export QUILT_PATCHES=debian/patches
export QUILT_REFRESH_ARGS="-p ab --no-timestamps --no-index"
quilt pop -a

cp oslo/messaging/_drivers/impl_rabbit.py /usr/lib/python2.7/dist-packages/oslo/messaging/_drivers/impl_rabbit.py
cp oslo/messaging/_drivers/common.py /usr/lib/python2.7/dist-packages/oslo/messaging/_drivers/common.py
cp oslo/messaging/_drivers/amqpdriver.py /usr/lib/python2.7/dist-packages/oslo/messaging/_drivers/amqpdriver.py

cd /etc/init/; for i in nova-*conf; do service ${i/.conf/} restart; done