Не удается настроить RabbitMQ после новой установки - PullRequest
0 голосов
/ 15 февраля 2019

У меня возникают некоторые проблемы после установки свежей версии RabbitMQ на RedHat 7.6. Версия RabbitMQ - 3.7.7.6.Erlang версия 21.2.5 - Эти два совместимы.

После установки я запускаю сервер RabbitMQ.Здесь нет проблем.

Как только я хочу добавить пользователя или что-то настроить, происходит сбой.Например:

[root@blabla ~]# rabbitmqctl status
(.....)
Only webadmin or rabbitmq can run rabbitmqctl

Я пытался, но теперь у меня возникла новая проблема, связанная с файлом cookie Erlang:

[root@blabla ~]# sudo -u webadmin rabbitmqctl status
Status of node rabbit@blabla ...
Error: unable to perform an operation on node 'rabbit@blabla'. Please see diagnostics information and suggestions below.

Most common reasons for this are:

 * Target node is unreachable (e.g. due to hostname resolution, TCP connection or firewall issues)
 * CLI tool fails to authenticate with the server (e.g. due to CLI tool's Erlang cookie not matching that of the server)
 * Target node is not running

In addition to the diagnostics info below:

 * See the CLI, clustering and networking guides on http://rabbitmq.com/documentation.html to learn more
 * Consult server logs on node rabbit@blabla 

DIAGNOSTICS
===========

attempted to contact: ['rabbit@blabla']

rabbit@blabla:
  * connected to epmd (port 4369) on blabla
  * epmd reports node 'rabbit' uses port 25672 for inter-node and CLI tool traffic
  * TCP connection succeeded but Erlang distribution failed

  * Authentication failed (rejected by the remote node), please check the Erlang cookie

Я уже проверил Не могу получить доступ к rabbitmq mgmt но все ответы требуют возможности использовать rabbitmq-plugins или rabbitmqtl, которые я не могу.

Сервер запущен и работает (systemctl start rabbitmq), я могу получить к нему удаленный доступ через порт 15672. Очевидно, яне может подключиться с помощью гостя / гостя, но это ожидаемое поведение на данный момент.Также здесь нет настройки кластера, просто «простая» установка.

...