middleware – Installing rabbitMQ on powerpc architecture

I guys, I am required to install rabbitmq open source version on a redhat enterprise linux version 8.4 on a power8 server (RHEL8.4 on ppc64le) I couldn’t find any supporting rpm for the ppc64le architecture on an official documentation and the github repo. But on a test environment I tried to built rpm for erlang using the source and installed the noarch.rpm of the rabbitmq-server. Then to confirm if there is no issue, I successfully tested a scenario which a queue is created and message is published and consumed. But I want a confirmation of the steps I followed. Here are the commands I executed.

tar -xvf v26.2.5.3.tar.gz         # v26.2.5.3.tar.gz is the source code of the erlang software

cd erlang-rpm-26.2.5.3/           # erlang-rpm-26.2.5.3 is the  extracted source

make                              # this created an ppc64le rpm package

cd RPMS/ppc64le

rpm -Uvh erlang-26.2.5.3-1.el8.ppc64le.rpm

installing socat and logrotate and rabbitmq server

dnf install socat

dnf install logrotate

rpm -Uvh rabbitmq-server-3.13.7-1.el8.noarch.rpm

enable and start rabbitmq server

systemctl enable rabbitmq-server

systemctl start rabbitmq-server

Now rabbit mq is running without errors but I want to know if the process is right and there won’t be any vulnerability.

Read more here: Source link