This is an automated email from the ASF dual-hosted git repository.
markt pushed a commit to branch 9.0.x
in repository https://gitbox.apache.org/repos/asf/tomcat.git
The following commit(s) were added to refs/heads/9.0.x by this push:
new b144651 Note additional property required by listener
b144651 is described below
commit b144651beeda3ff7a3debbe2b1d5ba1edc8d4a3a
Author: Mark Thomas <[email protected]>
AuthorDate: Wed Mar 4 11:00:21 2020 +0000
Note additional property required by listener
Required because the default value used by the listener if the property
is not set is "true".
---
webapps/docs/changelog.xml | 11 +++++++++++
webapps/docs/config/listeners.xml | 6 ++++--
2 files changed, 15 insertions(+), 2 deletions(-)
diff --git a/webapps/docs/changelog.xml b/webapps/docs/changelog.xml
index 8c3b31e..116d0fa 100644
--- a/webapps/docs/changelog.xml
+++ b/webapps/docs/changelog.xml
@@ -163,6 +163,17 @@
</fix>
</changelog>
</subsection>
+ <subsection name="Web applications">
+ <changelog>
+ <fix>
+ Add to the documentation for the
<code>JmxRemoteLifecycleListener</code>
+ the requirement to use
+ <code>-Dcom.sun.management.jmxremote.registry.ssl=false</code> if TLS
is
+ not being used else clients will be unable to connect to the JMX
server.
+ (markt)
+ </fix>
+ </changelog>
+ </subsection>
<subsection name="Other">
<changelog>
<add>
diff --git a/webapps/docs/config/listeners.xml
b/webapps/docs/config/listeners.xml
index 25828d8..f37dbaf 100644
--- a/webapps/docs/config/listeners.xml
+++ b/webapps/docs/config/listeners.xml
@@ -649,7 +649,8 @@
<p>with the following system properties set (e.g. in setenv.sh):</p>
<source>
-Dcom.sun.management.jmxremote.password.file=$CATALINA_BASE/conf/jmxremote.password
-Dcom.sun.management.jmxremote.access.file=$CATALINA_BASE/conf/jmxremote.access
- -Dcom.sun.management.jmxremote.ssl=false</source>
+ -Dcom.sun.management.jmxremote.ssl=false
+ -Dcom.sun.management.jmxremote.registry.ssl=false</source>
<p>$CATALINA_BASE/conf/jmxremote.password containing:</p>
<source>admin letmein</source>
<p>$CATALINA_BASE/conf/jmxremote.access containing:</p>
@@ -685,7 +686,8 @@
<source> -Dcom.sun.management.jmxremote.login.config=Tomcat
-Djava.security.auth.login.config=$CATALINA_BASE/conf/login.config
-Dcom.sun.management.jmxremote.access.file=$CATALINA_BASE/conf/jmxremote.access
- -Dcom.sun.management.jmxremote.ssl=false</source>
+ -Dcom.sun.management.jmxremote.ssl=false
+ -Dcom.sun.management.jmxremote.registry.ssl=false</source>
<p>$CATALINA_BASE/conf/login.config containing your choice of JAAS
LoginModule implementation, for example:</p>
<source> Tomcat { /* should match to the
com.sun.management.jmxremote.login.config property */
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]