Updated Branches: refs/heads/trunk f64283569 -> 4e9d1aca0
Add example jmx auth file location Patch by Peter Halliday, reviewed by brandonwilliams for CASSANDRA-6286 Project: http://git-wip-us.apache.org/repos/asf/cassandra/repo Commit: http://git-wip-us.apache.org/repos/asf/cassandra/commit/b78617b2 Tree: http://git-wip-us.apache.org/repos/asf/cassandra/tree/b78617b2 Diff: http://git-wip-us.apache.org/repos/asf/cassandra/diff/b78617b2 Branch: refs/heads/trunk Commit: b78617b22671d7e117826b31bcc044dc8d5b8ced Parents: b0b168f Author: Brandon Williams <[email protected]> Authored: Fri Jan 17 11:06:13 2014 -0600 Committer: Brandon Williams <[email protected]> Committed: Fri Jan 17 11:07:12 2014 -0600 ---------------------------------------------------------------------- conf/cassandra-env.sh | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cassandra/blob/b78617b2/conf/cassandra-env.sh ---------------------------------------------------------------------- diff --git a/conf/cassandra-env.sh b/conf/cassandra-env.sh index b5aea38..dce8ca4 100644 --- a/conf/cassandra-env.sh +++ b/conf/cassandra-env.sh @@ -226,21 +226,22 @@ fi # uncomment to have Cassandra JVM listen for remote debuggers/profilers on port 1414 # JVM_OPTS="$JVM_OPTS -Xdebug -Xnoagent -Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=1414" -# Prefer binding to IPv4 network intefaces (when net.ipv6.bindv6only=1). See +# Prefer binding to IPv4 network intefaces (when net.ipv6.bindv6only=1). See # http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6342561 (short version: # comment out this entry to enable IPv6 support). JVM_OPTS="$JVM_OPTS -Djava.net.preferIPv4Stack=true" # jmx: metrics and administration interface -# +# # add this if you're having trouble connecting: # JVM_OPTS="$JVM_OPTS -Djava.rmi.server.hostname=<public name>" -# -# see +# +# see # https://blogs.oracle.com/jmxetc/entry/troubleshooting_connection_problems_in_jconsole # for more on configuring JMX through firewalls, etc. (Short version: # get it working with no firewall first.) -JVM_OPTS="$JVM_OPTS -Dcom.sun.management.jmxremote.port=$JMX_PORT" -JVM_OPTS="$JVM_OPTS -Dcom.sun.management.jmxremote.ssl=false" -JVM_OPTS="$JVM_OPTS -Dcom.sun.management.jmxremote.authenticate=false" +JVM_OPTS="$JVM_OPTS -Dcom.sun.management.jmxremote.port=$JMX_PORT" +JVM_OPTS="$JVM_OPTS -Dcom.sun.management.jmxremote.ssl=false" +JVM_OPTS="$JVM_OPTS -Dcom.sun.management.jmxremote.authenticate=false" +#JVM_OPTS="$JVM_OPTS -Dcom.sun.management.jmxremote.password.file=/etc/cassandra/jmxremote.password" JVM_OPTS="$JVM_OPTS $JVM_EXTRA_OPTS"
