RabbitMQ accepting connections but closing them before accepting any input

前端 未结 2 1981
粉色の甜心
粉色の甜心 2021-01-15 15:39

So I just installed the latest version of rabbitmq and I\'ve been trying to get it to work. The server is running and I\'ve restarted it once just to be sure it\'s a consist

2条回答
  •  夕颜
    夕颜 (楼主)
    2021-01-15 16:07

    Telnet lets you confirm the system is listening and allows incoming connections. But even an "out of the box" install of RabbitMQ expects credentials for connections.

    rabbitmqctl list_users to see which users are configured.

    If guest present, typical creds are guest / guest

    Either install management plugin (or confirm it is installed), or script your test, most languages have a package available for connecting to RabbitMQ.

提交回复
热议问题