mirror of https://github.com/apache/lucene.git
SOLR-6843: JMX RMI connector should be disabled by default but can be activated by setting ENABLE_REMOTE_JMX_OPTS to true in solr.in.(sh|cmd).
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1644978 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
b1083b2a32
commit
3a5438ec1f
|
@ -484,6 +484,9 @@ Other Changes
|
||||||
the example directory instead of server/solr. (Alexandre Rafalovitch, Anshum Gupta, hossman,
|
the example directory instead of server/solr. (Alexandre Rafalovitch, Anshum Gupta, hossman,
|
||||||
Timothy Potter)
|
Timothy Potter)
|
||||||
|
|
||||||
|
* SOLR-6843: JMX RMI connector should be disabled by default but can be activated by
|
||||||
|
setting ENABLE_REMOTE_JMX_OPTS to true in solr.in.(sh|cmd). (Timothy Potter)
|
||||||
|
|
||||||
================== 4.10.3 ==================
|
================== 4.10.3 ==================
|
||||||
|
|
||||||
Bug Fixes
|
Bug Fixes
|
||||||
|
|
|
@ -58,10 +58,10 @@ REM set SOLR_HOST=192.168.1.1
|
||||||
REM By default the start script uses UTC; override the timezone if needed
|
REM By default the start script uses UTC; override the timezone if needed
|
||||||
REM set SOLR_TIMEZONE=UTC
|
REM set SOLR_TIMEZONE=UTC
|
||||||
|
|
||||||
REM By default the start script enables some RMI related parameters to allow attaching
|
REM Set to true to activate the JMX RMI connector to allow remote JMX client applications
|
||||||
REM JMX savvy tools like VisualVM remotely, set to "false" to disable that behavior
|
REM to monitor the JVM hosting Solr; set to "false" to disable that behavior
|
||||||
REM (recommended in production environments)
|
REM (false is recommended in production environments)
|
||||||
set ENABLE_REMOTE_JMX_OPTS=true
|
set ENABLE_REMOTE_JMX_OPTS=false
|
||||||
|
|
||||||
REM The script will use SOLR_PORT+10000 for the RMI_PORT or you can set it here
|
REM The script will use SOLR_PORT+10000 for the RMI_PORT or you can set it here
|
||||||
REM set RMI_PORT=18983
|
REM set RMI_PORT=18983
|
||||||
|
|
|
@ -56,10 +56,10 @@ GC_TUNE="-XX:NewRatio=3 \
|
||||||
# By default the start script uses UTC; override the timezone if needed
|
# By default the start script uses UTC; override the timezone if needed
|
||||||
#SOLR_TIMEZONE="UTC"
|
#SOLR_TIMEZONE="UTC"
|
||||||
|
|
||||||
# By default the start script enables some RMI related parameters to allow attaching
|
# Set to true to activate the JMX RMI connector to allow remote JMX client applications
|
||||||
# JMX savvy tools like VisualVM remotely, set to "false" to disable that behavior
|
# to monitor the JVM hosting Solr; set to "false" to disable that behavior
|
||||||
# (recommended in production environments)
|
# (false is recommended in production environments)
|
||||||
ENABLE_REMOTE_JMX_OPTS="true"
|
ENABLE_REMOTE_JMX_OPTS="false"
|
||||||
|
|
||||||
# The script will use SOLR_PORT+10000 for the RMI_PORT or you can set it here
|
# The script will use SOLR_PORT+10000 for the RMI_PORT or you can set it here
|
||||||
# RMI_PORT=18983
|
# RMI_PORT=18983
|
||||||
|
|
Loading…
Reference in New Issue