Return-Path: X-Original-To: apmail-hbase-commits-archive@www.apache.org Delivered-To: apmail-hbase-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 7518F11C6F for ; Thu, 19 Jun 2014 21:51:19 +0000 (UTC) Received: (qmail 83833 invoked by uid 500); 19 Jun 2014 21:51:19 -0000 Delivered-To: apmail-hbase-commits-archive@hbase.apache.org Received: (qmail 83782 invoked by uid 500); 19 Jun 2014 21:51:19 -0000 Mailing-List: contact commits-help@hbase.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@hbase.apache.org Delivered-To: mailing list commits@hbase.apache.org Received: (qmail 83769 invoked by uid 99); 19 Jun 2014 21:51:19 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 19 Jun 2014 21:51:19 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 05D41985A78; Thu, 19 Jun 2014 21:51:18 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: stack@apache.org To: commits@hbase.apache.org Date: Thu, 19 Jun 2014 21:51:18 -0000 Message-Id: <8b092d1e47f64883b2aab800b871861f@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [1/2] git commit: HBASE-10289 Avoid random port usage by default JMX Server. Create Custome JMX server (Qiang Tian). DOC ADDENDUM Repository: hbase Updated Branches: refs/heads/master 45bc13d87 -> 5764df297 HBASE-10289 Avoid random port usage by default JMX Server. Create Custome JMX server (Qiang Tian). DOC ADDENDUM Project: http://git-wip-us.apache.org/repos/asf/hbase/repo Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/b16e36a5 Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/b16e36a5 Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/b16e36a5 Branch: refs/heads/master Commit: b16e36a5b2650b2ce2c7686c6653c77074481115 Parents: 45bc13d Author: Michael Stack Authored: Tue Jun 17 22:42:13 2014 -0500 Committer: Michael Stack Committed: Thu Jun 19 14:38:19 2014 -0700 ---------------------------------------------------------------------- src/main/docbkx/configuration.xml | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hbase/blob/b16e36a5/src/main/docbkx/configuration.xml ---------------------------------------------------------------------- diff --git a/src/main/docbkx/configuration.xml b/src/main/docbkx/configuration.xml index 1777b8d..00effab 100644 --- a/src/main/docbkx/configuration.xml +++ b/src/main/docbkx/configuration.xml @@ -1474,7 +1474,8 @@ index e70ebc6..96f8c27 100644 for details) As an alternative, You can use the coprocessor-based JMX implementation provided - by HBase. To enable it, add below property in hbase-site.xml: + by HBase. To enable it in 0.99 or above, add below property in + hbase-site.xml: hbase.coprocessor.regionserver.classes @@ -1549,6 +1550,17 @@ export HBASE_REGIONSERVER_OPTS="$HBASE_REGIONSERVER_OPTS $HBASE_JMX_BASE " jconsole -J-Djavax.net.ssl.trustStore=/home/tianq/jconsoleKeyStore + NOTE: for HBase 0.98, To enable the HBase JMX implementation on Master, you also + need to add below property in hbase-site.xml: + + hbase.coprocessor.master.classes + org.apache.hadoop.hbase.JMXListener + +]]> + The corresponding properties for port configuration are master.rmi.registry.port + (by default 10101) and master.rmi.connector.port(by default the same as registry.port) +