Comments on: JMX in Hector http://prettyprint.me/2010/04/03/jmx-in-hector/ by Ran Tavory Mon, 01 Aug 2011 08:29:01 +0000 hourly 1 http://wordpress.org/?v=3.2 By: Gagan http://prettyprint.me/2010/04/03/jmx-in-hector/comment-page-1/#comment-5312 Gagan Mon, 10 Jan 2011 08:35:52 +0000 http://prettyprint.me/?p=285#comment-5312 Here are steps for newbe like me - Non production test environment - Disabling Security To disable both password authentication and SSL (no security), set these system properties when you start the JVM: com.sun.management.jmxremote.authenticate=false com.sun.management.jmxremote.ssl=false Warning: This configuration is insecure: any remote user who knows (or guesses) your JMX port number and host name will be able to monitor and control your Java application and platform. While it may be acceptable for development, it is not recommended for production systems. To enable monitoring and management from remote systems, set this system property when you start the JVM: com.sun.management.jmxremote.port=portNum where portNum is the port number through which you want to enable JMX/RMI connections. Be sure to specify an unused port number. Ref - http://download.oracle.com/javase/1.5.0/docs/guide/management/agent.html#auth Here are steps for newbe like me –

Non production test environment –
Disabling Security

To disable both password authentication and SSL (no security), set these system properties when you start the JVM:

com.sun.management.jmxremote.authenticate=false
com.sun.management.jmxremote.ssl=false

Warning: This configuration is insecure: any remote user who knows (or guesses) your JMX port number and host name will be able to monitor and control your Java application and platform. While it may be acceptable for development, it is not recommended for production systems.

To enable monitoring and management from remote systems, set this system property when you start the JVM:

com.sun.management.jmxremote.port=portNum

where portNum is the port number through which you want to enable JMX/RMI connections. Be sure to specify an unused port number.

Ref – http://download.oracle.com/javase/1.5.0/docs/guide/management/agent.html#auth

]]>
By: Hector API v2 | PrettyPrint.me http://prettyprint.me/2010/04/03/jmx-in-hector/comment-page-1/#comment-2893 Hector API v2 | PrettyPrint.me Fri, 06 Aug 2010 11:27:37 +0000 http://prettyprint.me/?p=285#comment-2893 [...] extensive jmx support [...] [...] extensive jmx support [...]

]]>
By: Ran Tavory http://prettyprint.me/2010/04/03/jmx-in-hector/comment-page-1/#comment-1023 Ran Tavory Sun, 16 May 2010 21:27:58 +0000 http://prettyprint.me/?p=285#comment-1023 that's cool, didn't know about cloc that’s cool, didn’t know about cloc

]]>
By: Elazar Leibovich http://prettyprint.me/2010/04/03/jmx-in-hector/comment-page-1/#comment-1022 Elazar Leibovich Sun, 16 May 2010 21:24:04 +0000 http://prettyprint.me/?p=285#comment-1022 Oops, wrong post, I meant to mention that on the post where you mentioned how you counted Cassandra's SLOC. Oops, wrong post, I meant to mention that on the post where you mentioned how you counted Cassandra’s SLOC.

]]>
By: Elazar Leibovich http://prettyprint.me/2010/04/03/jmx-in-hector/comment-page-1/#comment-1021 Elazar Leibovich Sun, 16 May 2010 21:23:23 +0000 http://prettyprint.me/?p=285#comment-1021 Instead of using unmaintainable bash trickery to kind SLOC, use CLOC. http://cloc.sourceforge.net/ It has support for many programming languages. Instead of using unmaintainable bash trickery to kind SLOC, use CLOC.

http://cloc.sourceforge.net/

It has support for many programming languages.

]]>
By: ibillguo http://prettyprint.me/2010/04/03/jmx-in-hector/comment-page-1/#comment-593 ibillguo Fri, 16 Apr 2010 01:55:53 +0000 http://prettyprint.me/?p=285#comment-593 Hi Ran Tavory, Cassandra 0.6.0 release version is available now Any timeline for hector on supporting official release? Hi Ran Tavory,
Cassandra 0.6.0 release version is available now
Any timeline for hector on supporting official release?

]]>
By: Ran Tavory http://prettyprint.me/2010/04/03/jmx-in-hector/comment-page-1/#comment-574 Ran Tavory Wed, 14 Apr 2010 04:52:06 +0000 http://prettyprint.me/?p=285#comment-574 Yes, it's in the 0.6.0 branch and in the downloads page http://github.com/rantav/hector/tree/0.6.0 http://github.com/rantav/hector/downloads Yes, it’s in the 0.6.0 branch and in the downloads page http://github.com/rantav/hector/tree/0.6.0
http://github.com/rantav/hector/downloads

]]>
By: Dan http://prettyprint.me/2010/04/03/jmx-in-hector/comment-page-1/#comment-571 Dan Tue, 13 Apr 2010 22:39:07 +0000 http://prettyprint.me/?p=285#comment-571 Does Hector have Cassandra 0.6 support (released in the last couple days)? Any plans? Does Hector have Cassandra 0.6 support (released in the last couple days)? Any plans?

]]>
By: ibillguo http://prettyprint.me/2010/04/03/jmx-in-hector/comment-page-1/#comment-530 ibillguo Tue, 06 Apr 2010 02:10:07 +0000 http://prettyprint.me/?p=285#comment-530 Thanks, it's working Thanks, it’s working

]]>
By: Ran Tavory http://prettyprint.me/2010/04/03/jmx-in-hector/comment-page-1/#comment-521 Ran Tavory Sun, 04 Apr 2010 07:39:06 +0000 http://prettyprint.me/?p=285#comment-521 Java's JMX coverage is pretty extensive and way out of scope here.... See for example http://java.sun.com/developer/technicalArticles/J2SE/jmx.html A simple start would be to using the jconsole UI tool <a href="http://java.sun.com/developer/technicalArticles/J2SE/jconsole.html" rel="nofollow">http://java.sun.com/developer/technicalArticles/J2SE/jconsole.html</a> Java’s JMX coverage is pretty extensive and way out of scope here….
See for example http://java.sun.com/developer/technicalArticles/J2SE/jmx.html

A simple start would be to using the jconsole UI tool http://java.sun.com/developer/technicalArticles/J2SE/jconsole.html

]]>