Chapter 3. Known issues

  • ENTMQIC-1980 - Symbolic ports in HTTP listeners do not work

    When configuring a listener in the router with the http option enabled (for console or WebSocket access), the port attribute must be expressed numerically. Symbolic port names do not work with HTTP listeners.

    If a listener is configured as:

    listener {
        ...
        port: amqp
        http: yes
        ...
    }

    It should be changed to:

    listener {
        ...
        port: 5672
        http: yes
        ...
    }

Revised on 2020-06-16 12:28:18 UTC