This is an automated email from the ASF dual-hosted git repository.

coheigea pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git


The following commit(s) were added to refs/heads/master by this push:
     new 5b88a35  Replace the jmxremote.authenticate=false examples with 
password authentication
5b88a35 is described below

commit 5b88a35c7f6fe24ce49f5ba6b3b39b21d5192854
Author: Colm O hEigeartaigh <cohei...@apache.org>
AuthorDate: Thu May 21 16:07:38 2020 +0100

    Replace the jmxremote.authenticate=false examples with password 
authentication
---
 docs/user-manual/modules/ROOT/pages/jmx.adoc | 9 ++++++---
 1 file changed, 6 insertions(+), 3 deletions(-)

diff --git a/docs/user-manual/modules/ROOT/pages/jmx.adoc 
b/docs/user-manual/modules/ROOT/pages/jmx.adoc
index 1ab045c..2848c0c 100644
--- a/docs/user-manual/modules/ROOT/pages/jmx.adoc
+++ b/docs/user-manual/modules/ROOT/pages/jmx.adoc
@@ -148,7 +148,7 @@ Spring configuration:
 
 [CAUTION]
 Starting from Camel 3.2.0, the configuration in this section no longer 
applies. For older
-releases, it is not recommended to use this functionality for security 
reasons. Instead,
+releases, it is strongly recommended not to use this functionality for 
security reasons. Instead,
 use the default JVM JMX remote capabilities if required.
 
 JMX connector server enables MBeans to be remotely managed by a JMX
@@ -308,7 +308,8 @@ set the following options...
  set CATALINA_OPTS=-Dcom.sun.management.jmxremote \
     -Dcom.sun.management.jmxremote.port=1099 \
     -Dcom.sun.management.jmxremote.ssl=false \
-    -Dcom.sun.management.jmxremote.authenticate=false
+    -Dcom.sun.management.jmxremote.access.file=<path.to.jmx.access> \
+    -Dcom.sun.management.jmxremote.password.file=<path.to.jmx.password>
 ----
 
 === JBoss AS 4
@@ -389,7 +390,9 @@ creates by default.
 [source]
 ----
 SUNJMX=-Dcom.sun.management.jmxremote=true 
-Dcom.sun.management.jmxremote.port=1616 \
--Dcom.sun.management.jmxremote.authenticate=false 
-Dcom.sun.management.jmxremote.ssl=false
+-Dcom.sun.management.jmxremote.access.file=<path.to.jmx.access> \
+-Dcom.sun.management.jmxremote.password.file=<path.to.jmx.password> \
+-Dcom.sun.management.jmxremote.ssl=false
 ----
 
 (The SUNJMX environment variable is simple used by the startup script

Reply via email to