rabbitmq-server installation CentOS - Erlang Error

一个人想着一个人 提交于 2019-12-18 18:23:38

问题


I have centos 6 and trying to install rabbitmq 3.5.3 using rpm. (do not have option for yum)

its throwing me below eror.

[root@osboxes CentOS]# rpm -Uvh rabbitmq-server-3.5.3-1.noarch.rpm 
warning: rabbitmq-server-3.5.3-1.noarch.rpm: Header V4 DSA/SHA1 Signature, key ID 056e8e56: NOKEY
error: Failed dependencies:
    erlang >= R13B-03 is needed by rabbitmq-server-3.5.3-1.noarch

But I have already installed erlang

[root@osboxes CentOS]# which erl
/usr/bin/erl
[root@osboxes CentOS]# 
[root@osboxes CentOS]# erl
Erlang/OTP 17 [erts-6.0] [source-07b8f44] [64-bit] [async-threads:10] [hipe] [kernel-poll:false]

Eshell V6.0  (abort with ^G)
1> 

Why is it not picking installed erlang?

Please share some advice that will help me in resolving the issue;


回答1:


After googling a lot, finally below command worked for me!

rpm -ivh --nodeps rabbitmq-server-3.5.7-1.noarch.rpm

since, erlang is already installed, rabbitmq started successfully after this installation.

More details here - http://comments.gmane.org/gmane.comp.networking.rabbitmq.general/28842



来源:https://stackoverflow.com/questions/40157859/rabbitmq-server-installation-centos-erlang-error

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!