This is an automated email from the ASF dual-hosted git repository.
ndimiduk pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/hbase.git
The following commit(s) were added to refs/heads/master by this push:
new 302034223c0 Purging references to ports 60010 and 60030 from the book
302034223c0 is described below
commit 302034223c0be11d81bcbbae230e828a97753078
Author: itstitus <[email protected]>
AuthorDate: Mon Jun 13 16:37:15 2022 +0530
Purging references to ports 60010 and 60030 from the book
Signed-off-by: Nick Dimiduk <[email protected]>
---
src/main/asciidoc/_chapters/getting_started.adoc | 7 -------
src/main/asciidoc/_chapters/ops_mgt.adoc | 8 ++++----
2 files changed, 4 insertions(+), 11 deletions(-)
diff --git a/src/main/asciidoc/_chapters/getting_started.adoc
b/src/main/asciidoc/_chapters/getting_started.adoc
index 9e4aa8c069b..3a85f90d969 100644
--- a/src/main/asciidoc/_chapters/getting_started.adoc
+++ b/src/main/asciidoc/_chapters/getting_started.adoc
@@ -573,13 +573,6 @@ For more about ZooKeeper configuration, including using an
external ZooKeeper in
. Browse to the Web UI.
+
-.Web UI Port Changes
-[NOTE]
-====
-In HBase newer than 0.98.x, the HTTP ports used by the HBase Web UI changed
from 60010 for the
-Master and 60030 for each RegionServer to 16010 for the Master and 16030 for
the RegionServer.
-====
-+
If everything is set up correctly, you should be able to connect to the UI for
the Master
`http://node-a.example.com:16010/` or the secondary master at
`http://node-b.example.com:16010/`
using a web browser.
diff --git a/src/main/asciidoc/_chapters/ops_mgt.adoc
b/src/main/asciidoc/_chapters/ops_mgt.adoc
index 5608509fdb1..6a57de1ef08 100644
--- a/src/main/asciidoc/_chapters/ops_mgt.adoc
+++ b/src/main/asciidoc/_chapters/ops_mgt.adoc
@@ -1617,15 +1617,15 @@ Rather than listing each metric which HBase emits by
default, you can browse thr
Different metrics are exposed for the Master process and each region server
process.
.Procedure: Access a JSON Output of Available Metrics
-. After starting HBase, access the region server's web UI, at
pass:[http://REGIONSERVER_HOSTNAME:60030] by default (or port 16030 in HBase
1.0+).
+. After starting HBase, access the region server's web UI, at
pass:[http://REGIONSERVER_HOSTNAME:16030] by default.
. Click the [label]#Metrics Dump# link near the top.
The metrics for the region server are presented as a dump of the JMX bean in
JSON format.
This will dump out all metrics names and their values.
- To include metrics descriptions in the listing -- this can be useful when
you are exploring what is available -- add a query string of
`?description=true` so your URL becomes
pass:[http://REGIONSERVER_HOSTNAME:60030/jmx?description=true].
+ To include metrics descriptions in the listing -- this can be useful when
you are exploring what is available -- add a query string of
`?description=true` so your URL becomes
pass:[http://REGIONSERVER_HOSTNAME:16030/jmx?description=true].
Not all beans and attributes have descriptions.
-. To view metrics for the Master, connect to the Master's web UI instead
(defaults to pass:[http://localhost:60010] or port 16010 in HBase 1.0+) and
click its [label]#Metrics
+. To view metrics for the Master, connect to the Master's web UI instead
(defaults to pass:[http://localhost:16010]) and click its [label]#Metrics
Dump# link.
- To include metrics descriptions in the listing -- this can be useful when
you are exploring what is available -- add a query string of
`?description=true` so your URL becomes
pass:[http://REGIONSERVER_HOSTNAME:60010/jmx?description=true].
+ To include metrics descriptions in the listing -- this can be useful when
you are exploring what is available -- add a query string of
`?description=true` so your URL becomes
pass:[http://REGIONSERVER_HOSTNAME:16010/jmx?description=true].
Not all beans and attributes have descriptions.