Setup ActiveMQ Artemis on Windows 10
ActiveMQ Artemis is an open source project for asynchronous messaging system. It is faster, more recent implementation, including support for JMS 2.0. Artemis is the codename used for the HornetQ code that was donated to the Apache Foundation.
Let us start Atremis setup on Windows machine.
Step 1: Download and extract the archive
In this tutorial, I've downloaded version
2.17.0 zip file using below link:
Once downloaded, extract it to some convenient location. e.g.:
D:\apache-artemis-2.17.0
Step 2: Run the ActiveMQ Artemis
Note. Artemis only runs on Java 7 or later.
Open command prompt and navigate to ${ARTEMIS_HOME}/bin
Create a Broker Instance using command: ${ARTEMIS_HOME}/bin/artemis create mybroker
A broker instance is the directory containing all the configuration and runtime data, such as logs and
data files.
Start your Broker Instance using command: ${ARTEMIS_HOME}/bin/mybroker/bin/artemis run
Verify your Broker Instance by opening the console in browser: http://localhost:8161/console
You will see the blow login page.
Put the credentials created during broker instance setup and log in. You will see the below console:
Now that the broker is running, you can optionally run some of the included examples to verify the
broker is running properly.
Comments
Post a Comment