After applying cumulative patch CSP-97727, the symbolic link to RabbitMQ does not update and continues to point to the older version.
VMware Identity Manager 3.3.x
Steps to Verify and Update RabbitMQ Version on vIDM Nodes
Navigate to the directory /usr/sbin:
cd /usr/sbin
List the RabbitMQ-related symbolic links and check the version they point to:
ls -lrt | grep rabbitmq
Identify the latest RabbitMQ version installed:
Navigate to the RabbitMQ library directory:
cd /usr/lib/rabbitmq/lib/
List the contents to identify the latest RabbitMQ version directory:
ls
Update the RabbitMQ symbolic links to point to the latest version:
Remove existing RabbitMQ symbolic links:
rm -f /usr/sbin/rabbitmq*
rm -f /usr/sbin/vmware-rabbitmq
Create new symbolic links pointing to the latest RabbitMQ version's binaries:
ln -s /usr/lib/rabbitmq/lib/`ls /usr/lib/rabbitmq/lib/`/sbin/* /usr/sbin/
Verify the symbolic links:
Confirm that the symbolic links in /usr/sbin are now pointing to the latest RabbitMQ version by repeating step 1.