How to access RabbitMq publicly

后端 未结 3 692
慢半拍i
慢半拍i 2020-12-28 08:07

I have installed & setup the Rabbitmq on Centos remote server. Later I created an file \"rabbitmq.config\" and added the line

[{rabbit, [{loopbac

3条回答
  •  臣服心动
    2020-12-28 09:02

    Since RabbitMQ 3.3.0 there you can't use default guest/guest credentials except via localhost, (see release notes for 3.3.0 for details).

    As a possible solution you can (and probably should) create custom secured user to be used for monitoring, management, etc.

    Also you can use proxy setup.

    P.S.:

    if you enabled loopback_users check that proper config loaded (for running NODENAME), it is well-formed (has valid syntax and ended with .), management plugin activated and started and no firewall blocking rules exists.

    P.P.S.:

    Check that default user is guest, it exists and has default (guest) password. If you use some library to access to RabbitMQ, check that it has the same defaults as remote (guest:guest) or specify them explicitly.

提交回复
热议问题