Running an ActiveMQ BrokerNote if you want to use an embedded broker then see How do I embed a Broker inside a Connection The binary distribution of ActiveMQ comes with a script called 'activemq' which allows you to run a broker.
Typing the following will run an ActiveMQ Broker using the out of the box configuration in the foreground bin/activemq console You can then use a Broker Configuration URI to specify how to start and configure your broker using a single URI. For example bin/activemq console broker:(tcp://localhost:61616,network:static:tcp://remotehost:61616)?persistent=false&useJmx=true Or you can a Broker XBean URI to customize the Message Broker using the Xml Configuration to suit your needs. You can run a broker with a specific XML configuration as bin/activemq console xbean:foo.xml Or you can use a Broker Properties URI to customize the Message Broker using a properties file; which avoids the dependency on Spring, xbean-spring and XML. bin/activemq console properties:foo.properties Monitoring the brokerYou can monitor ActiveMQ using the Web Console by pointing your browser at From ActiveMQ 5.8 onwards the web apps is secured out of the box. Or you can use the JMX support to view the running state of ActiveMQ. For more information see the file Running the broker inside a Servlet EngineSee the source code (or WAR) of the Web Console for an example of how to run the broker inside a web application using Spring. Running the broker inside your J2EE Application ServerWhether its Apache Geronmio, JBoss, WebLogic or some other J2EE container you should be able to just reconfigure and then deploy the activemq-*.rar which is included in the binary distribution as a deployment unit in your app server. By default the rar is not configured to start an embedded broker. But by setting the brokerXmlConfig on the resource adapter configuration, the resource adapter will start an embedded broker. For more details see J2EE Running the broker from the source codeFrom the latest checkout of the code you can run a broker using the ActiveMQ Performance Plugin Running the broker from mavenYou can download and install the ActiveMQ Startup Maven Plugin via the following command if you are in a directory with a pom.xml. More detailed usage here mvn org.apache.activemq.tooling:maven-activemq-plugin:5.0-SNAPSHOT:run You can also include it the pom and run it using: mvn activemq:run Handling JMS brokers going downA common requirement is that if the JMS broker goes down you want to automatically detect the failure and try to reconnect under the covers so that your application does not have to worry about reconnection. There is detailed documentation on this in Configuring Version 5 Transports; briefly... Just change your connection URI i to failover:tcp://host:port And the JMS client will auto-reconnect to the broker if it is shutdown and restarted later on. |