Message Bus
ActiveMQ
For a proper functioning of nevisDetect, install the ActiveMQ message bus. There are no special requirements for configuring the message bus. The configuration snippet below shows a minimal broker configuration:
<broker xmlns="http://activemq.apache.org/schema/core" brokerName="nevisDetect" persistent="false">
<sslContext>
<sslContext
keyStore="<your key store>"
keyStorePassword="<your key store password>"
trustStore="<your trust store>"
trustStorePassword="<your trust store password>"/>
</sslContext>
<transportConnectors>
<transportConnector name="openwire" uri="ssl://<host>:><port>?needClientAuth=true&transport.daemon=true"/>
</transportConnectors>
<plugins>
<statisticsBrokerPlugin/>
<timeStampingBrokerPlugin ttlCeiling="300000" zeroExpirationOverride="300000"/>
</plugins>
</broker>
- The
statisticsBrokerPlugin
is required for monitoring the queues and topics of nevisDetect in theApplication monitoring
view of the nevisDetect web application. - The
timeStampingBrokerPlugin
is recommended for limiting the time-to-live of a message.