This is an automated email from the ASF dual-hosted git repository.
wuzhiguo pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/bigtop-manager.git
The following commit(s) were added to refs/heads/main by this push:
new 0819d40e BIGTOP-4480: Fix HBase error jvm params cause startup failure
(#252)
0819d40e is described below
commit 0819d40ea3ee7be7e3086c521467ba43072e8bad
Author: Dansanyo <[email protected]>
AuthorDate: Wed Jul 30 23:50:27 2025 +0800
BIGTOP-4480: Fix HBase error jvm params cause startup failure (#252)
---
.../stacks/bigtop/3.3.0/services/hbase/configuration/hbase-env.xml | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git
a/bigtop-manager-server/src/main/resources/stacks/bigtop/3.3.0/services/hbase/configuration/hbase-env.xml
b/bigtop-manager-server/src/main/resources/stacks/bigtop/3.3.0/services/hbase/configuration/hbase-env.xml
index 79d40da7..ecc41ced 100644
---
a/bigtop-manager-server/src/main/resources/stacks/bigtop/3.3.0/services/hbase/configuration/hbase-env.xml
+++
b/bigtop-manager-server/src/main/resources/stacks/bigtop/3.3.0/services/hbase/configuration/hbase-env.xml
@@ -101,9 +101,9 @@ export HBASE_CONF_DIR=${hbase_conf_dir}
# Below are what we set by default. May only work with SUN JVM.
# For more on why as well as other possible settings,
# see http://wiki.apache.org/hadoop/PerformanceTuning
-export SERVER_GC_OPTS="-verbose:gc -XX:+PrintGCDetails
-Xlog:gc:${hbase_log_dir}/gc.log-`date +'%Y%m%d%H%M'`"
+export SERVER_GC_OPTS="-verbose:gc -XX:+PrintGCDetails
-Xloggc:${hbase_log_dir}/gc.log-`date +'%Y%m%d%H%M'`"
# Uncomment below to enable java garbage collection logging.
-export HBASE_OPTS="$HBASE_OPTS -verbose:gc -XX:+PrintGCDetails
-Xlog:gc:${hbase_log_dir}/gc-hbase.log"
+export HBASE_OPTS="$HBASE_OPTS -verbose:gc -XX:+PrintGCDetails
-Xloggc:${hbase_log_dir}/gc-hbase.log"
# Uncomment and adjust to enable JMX exporting
# See jmxremote.password and jmxremote.access in $JRE_HOME/lib/management to
configure remote password access.