55 lines
2.7 KiB
HTML
55 lines
2.7 KiB
HTML
<!--
|
|
Licensed to the Apache Software Foundation (ASF) under one
|
|
or more contributor license agreements. See the NOTICE file
|
|
distributed with this work for additional information
|
|
regarding copyright ownership. The ASF licenses this file
|
|
to you under the Apache License, Version 2.0 (the
|
|
"License"); you may not use this file except in compliance
|
|
with the License. You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing,
|
|
software distributed under the License is distributed on an
|
|
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
KIND, either express or implied. See the License for the
|
|
specific language governing permissions and limitations
|
|
under the License.
|
|
-->
|
|
|
|
<html>
|
|
<head>
|
|
<title>ActiveMQ Artemis Client Kickoff Example</title>
|
|
<link rel="stylesheet" type="text/css" href="../../../common/common.css" />
|
|
<link rel="stylesheet" type="text/css" href="../../../common/prettify.css" />
|
|
<script type="text/javascript" src="../../../common/prettify.js"></script>
|
|
</head>
|
|
<body onload="prettyPrint()">
|
|
<h1>Client Kickoff Example</h1>
|
|
|
|
<pre>To run the example, simply type <b>mvn verify</b> from this directory, <br>or <b>mvn -PnoServer verify</b> if you want to start and create the server manually.</pre>
|
|
|
|
<p>This example shows how to kick off a client connected to ActiveMQ
|
|
using <a href="http://java.sun.com/javase/technologies/core/mntr-mgmt/javamanagement/">JMX</a></p>
|
|
|
|
<p>The example will connect to ActiveMQ Artemis. Using JMX, we will list the remote addresses connected to the
|
|
server and close the corresponding connections. The client will be kicked off from ActiveMQ Artemis receiving
|
|
an exception that its JMS connection was interrupted.</p>
|
|
|
|
<h2>Example configuration</h2>
|
|
|
|
<p>ActiveMQ Artemis exposes its managed resources by default on the platform MBeanServer.</p>
|
|
<p>To access this MBeanServer remotely, the Java Virtual machine must be started with system properties:
|
|
<pre class="prettyprint">
|
|
<code>-Dcom.sun.management.jmxremote
|
|
-Dcom.sun.management.jmxremote.port=3000
|
|
-Dcom.sun.management.jmxremote.ssl=false
|
|
-Dcom.sun.management.jmxremote.authenticate=false</code>
|
|
</pre>
|
|
<p>These properties are explained in the Java <a href="http://docs.oracle.com/javase/8/docs/technotes/guides/management/agent.html#gdenl">management guide</a>
|
|
(please note that for this example, we will disable user authentication for simplicity).</p>
|
|
<p>With these properties, ActiveMQ Artemis server will be manageable remotely using standard JMX URL on port <code>3000</code>.</p>
|
|
</p>
|
|
</body>
|
|
</html>
|