...
Code Block | ||
---|---|---|
| ||
<Ports> <!-- Ports offset. This entry will set the value of the ports defined below to the define value + Offset. e.g. Offset=2 and HTTPS port=9443 will set the effective HTTPS port to 9445 --> <Offset>0</Offset> <!-- The JMX Ports --> <JMX> <!--The port RMI registry is exposed--> <RMIRegistryPort>9999</RMIRegistryPort> <!--The port RMI server should be exposed--> <RMIServerPort>11111</RMIServerPort> </JMX> <!-- Embedded LDAP server specific ports --> <EmbeddedLDAP> <!-- Port which embedded LDAP server runs --> <LDAPServerPort>10389</LDAPServerPort> <!-- Port which KDC (Kerberos Key Distribution Center) server runs --> <KDCServerPort>8000</KDCServerPort> </EmbeddedLDAP> <!-- Embedded Qpid broker ports --> <EmbeddedQpid> <!-- Broker TCP Port --> <BrokerPort>5672</BrokerPort> <!-- SSL Port --> <BrokerSSLPort>8672</BrokerSSLPort> </EmbeddedQpid> <!-- Override datasources JNDIproviderPort defined in bps.xml and datasources.properties files --> <!--<JNDIProviderPort>2199</JNDIProviderPort>--> <!--Override receive port of thrift based entitlement service.--> <ThriftEntitlementReceivePort>10500</ThriftEntitlementReceivePort> </Ports> | ||
Info |
Configuring a Client to Access Broker When Port Offset is Changed
Anchor | ||||
---|---|---|---|---|
|
As the Message Broker's port offset is changed, the default TCP Port of the broker also gets increased by the value set as the port offset. Hence, when using an external client to connect with the broker, TCP connection url's port should be changed to reflect the port offset value change.
...
As the default Broker TCP port value is 5672for the AMQP
transport is 567
2, in this case it must should be changed to 5673
. Similarly, when the MQTT
transport is used, the default Broker TCP port value 1883
should be changed to 1884
.