Dieser Inhalt ist in der von Ihnen ausgewählten Sprache nicht verfügbar.
Appendix C. Using AMQ Broker with the examples
The AMQ Core Protocol JMS examples require a running message broker with a queue named exampleQueue
. Use the procedures below to install and start the broker and define the queue.
C.1. Installing the broker Link kopierenLink in die Zwischenablage kopiert!
Follow the instructions in Getting Started with AMQ Broker to install the broker and create a broker instance. Enable anonymous access.
The following procedures refer to the location of the broker instance as <broker-instance-dir>
.
C.2. Starting the broker Link kopierenLink in die Zwischenablage kopiert!
Procedure
Use the
artemis run
command to start the broker.<broker-instance-dir>/bin/artemis run
$ <broker-instance-dir>/bin/artemis run
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Check the console output for any critical errors logged during startup. The broker logs
Server is now live
when it is ready.Copy to Clipboard Copied! Toggle word wrap Toggle overflow
C.3. Creating a queue Link kopierenLink in die Zwischenablage kopiert!
In a new terminal, use the artemis queue
command to create a queue named exampleQueue
.
<broker-instance-dir>/bin/artemis queue create --name exampleQueue --address exampleQueue --auto-create-address --anycast
$ <broker-instance-dir>/bin/artemis queue create --name exampleQueue --address exampleQueue --auto-create-address --anycast
You are prompted to answer a series of yes or no questions. Answer N
for no to all of them.
Once the queue is created, the broker is ready for use with the example programs.
C.4. Stopping the broker Link kopierenLink in die Zwischenablage kopiert!
When you are done running the examples, use the artemis stop
command to stop the broker.
<broker-instance-dir>/bin/artemis stop
$ <broker-instance-dir>/bin/artemis stop
Revised on 2023-05-17 14:00:25 UTC