diff --git a/assembly/src/release/user-guide.html b/assembly/src/release/user-guide.html index 74000a1bb4..30bb267b31 100755 --- a/assembly/src/release/user-guide.html +++ b/assembly/src/release/user-guide.html @@ -31,24 +31,67 @@ Welcome to Apache ActiveMQ. This document gives you a quick overview of how to g

Running the broker

-From the binary distribution you can run the Apache ActiveMQ server pretty easily via the bin/activemq command. +From the binary distribution you can run the Apache ActiveMQ server via the bin/activemq command. If you're using Windows, just type

     cd bin
-    activemq
+    activemq.bat
 

On Unix-like systems, type

-    cd bin
-    activemq console
+    ./bin/activemq console
 

to start the broker in foreground.

The Apache ActiveMQ broker should now have started

+

+Tip: If you run the bin/activemq command without any arguments it will output usage. +

+ +To stop the broker you can press ctrl + c to stop the process. + +

Running the broker in the background

+ +

+The broker can be started as a background process via the bin/activemq command +on Unix-like systems, type +

+
+    ./bin/activemq start
+
+

to start the broker in background. The broker will write to its log in the data/activemq.log file.

+ +

Stopping the broker

+ +

+The broker can be stopped via the bin/activemq command +If you're using Windows, just type +

+
+    cd bin
+    activemq.bat stop
+
+

+On Unix-like systems, type +

+
+    ./bin/activemq stop
+
+

to stop the broker. + + +

Access the web console

+ +In a web browser you can access the url http://0.0.0.0:8161/admin to access the ActiveMQ web console. + +

Access the web demos

+ +In a web browser you can access the url http://0.0.0.0:8161/demo to access the ActiveMQ web demos. +

Running the example programs

@@ -113,6 +156,13 @@ you can specify exact URLs to connect to via command like arguments. e.g. ant producer -Durl=tcp://somehost:port + + +

Further Readings

+ +You can find more details about Apache ActiveMQ at its website http://activemq.apache.org, +as well the guide getting started guide. +