On 8 February 2013 15:44, lhoffman <[email protected]> wrote:
>
> So I have looked and looked...How do I tell Qpid to not listen on port 8080?
> I don't see that in any config file.
>
> Thanks
> L

Lisa,

You need to look at the management/http element within the config.xml.
  To stop the Java Broker binding port 8080, either set enabled to
false, or assign a different port number.  If you choose the former,
you'll loose the ability to manage the Broker via the web interface.

eg.

<management>
  ...
  <http>
    <enabled>false</enabled>
  </http>

or

<management>
  ...
  <http>
    <port>8081</8081>
  </http>


The Java Broker startup message MNG-1002 confirms the port that have been bound.

[Broker] BRK-1001 : Startup : Version: 0.21 Build: exported
[Broker] BRK-1010 : Platform : JVM : Apple Inc. version:
1.6.0_37-b06-434-11M3909 OS : Mac OS X version: 10.8.2 arch: x86_64
[Broker] BRK-1011 : Maximum Memory : 1,069,416,448 bytes
[Broker] MNG-1001 : Web Management Startup
[Broker] MNG-1002 : Starting : HTTP : Listening on port 8081

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to