Skip to content

Instantly share code, notes, and snippets.

@kuenishi
Created May 10, 2021 07:11
Show Gist options
  • Save kuenishi/073b83f5c8cf192128115dd935c934af to your computer and use it in GitHub Desktop.
Save kuenishi/073b83f5c8cf192128115dd935c934af to your computer and use it in GitHub Desktop.
#
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# Set Ozone-specific environment variables here.
# Enable core dump when crash in C++
ulimit -c unlimited
# Many of the options here are built from the perspective that users
# may want to provide OVERWRITING values on the command line.
# For example:
#
# JAVA_HOME=/usr/java/testing ozone fs -ls
#
# Therefore, the vast majority (BUT NOT ALL!) of these defaults
# are configured for substitution and not append. If append
# is preferable, modify this file accordingly.
###
# Generic settings
###
# Technically, the only required environment variable is JAVA_HOME.
# All others are optional. However, the defaults are probably not
# preferred. Many sites configure these options outside of Ozone,
# such as in /etc/profile.d
# The java implementation to use. By default, this environment
# variable is REQUIRED on ALL platforms except OS X!
# export JAVA_HOME=
# Location of Ozone. By default, Ozone will attempt to determine
# this location based upon its execution path.
# export OZONE_HOME=
# Location of Ozone's configuration information. i.e., where this
# file is living. If this is not defined, Ozone will attempt to
# locate it based upon its execution path.
#
# NOTE: It is recommend that this variable not be set here but in
# /etc/profile.d or equivalent. Some options (such as
# --config) may react strangely otherwise.
#
# export OZONE_CONF_DIR=${OZONE_HOME}/etc/hadoop
# The maximum amount of heap to use (Java -Xmx). If no unit
# is provided, it will be converted to MB. Daemons will
# prefer any Xmx setting in their respective _OPT variable.
# There is no default; the JVM will autoscale based upon machine
# memory size.
# export OZONE_HEAPSIZE_MAX=
# The minimum amount of heap to use (Java -Xms). If no unit
# is provided, it will be converted to MB. Daemons will
# prefer any Xms setting in their respective _OPT variable.
# There is no default; the JVM will autoscale based upon machine
# memory size.
# export OZONE_HEAPSIZE_MIN=
# Extra Java runtime options for all Ozone commands. We don't support
# IPv6 yet/still, so by default the preference is set to IPv4.
# export OZONE_OPTS="-Djava.net.preferIPv4Stack=true"
# For Kerberos debugging, an extended option set logs more information
# export OZONE_OPTS="-Djava.net.preferIPv4Stack=true -Dsun.security.krb5.debug=true -Dsun.security.spnego.debug"
# Some parts of the shell code may do special things dependent upon
# the operating system. We have to set this here. See the next
# section as to why....
export OZONE_OS_TYPE=${OZONE_OS_TYPE:-$(uname -s)}
# Extra Java runtime options for some Ozone commands
# and clients (e.g., ozone sh). These get appended to OZONE_OPTS for
# such commands. In most cases, this should be left empty and
# let users supply it on the command line.
# export OZONE_CLIENT_OPTS=""
#
# A note about classpaths.
#
# By default, Apache Ozone overrides Java's CLASSPATH
# environment variable. It is configured such
# that it starts out blank with new entries added after passing
# a series of checks (file/dir exists, not already listed aka
# de-deduplication). During de-deduplication, wildcards and/or
# directories are *NOT* expanded to keep it simple. Therefore,
# if the computed classpath has two specific mentions of
# awesome-methods-1.0.jar, only the first one added will be seen.
# If two directories are in the classpath that both contain
# awesome-methods-1.0.jar, then Java will pick up both versions.
# An additional, custom CLASSPATH. Site-wide configs should be
# handled via the shellprofile functionality, utilizing the
# ozone_add_classpath function for greater control and much
# harder for apps/end-users to accidentally override.
# Similarly, end users should utilize ${HOME}/.ozonerc .
# This variable should ideally only be used as a short-cut,
# interactive way for temporary additions on the command line.
# export OZONE_CLASSPATH="/some/cool/path/on/your/machine"
# Should OZONE_CLASSPATH be first in the official CLASSPATH?
# export OZONE_USER_CLASSPATH_FIRST="yes"
# If OZONE_USE_CLIENT_CLASSLOADER is set, OZONE_CLASSPATH and
# OZONE_USER_CLASSPATH_FIRST are ignored.
# export OZONE_USE_CLIENT_CLASSLOADER=true
###
# Options for remote shell connectivity
###
# There are some optional components of ozone that allow for
# command and control of remote hosts. For example,
# start-ozone.sh will attempt to bring up all OMs, SCMs, DNs, etc.
# Options to pass to SSH when one of the "log into a host and
# start/stop daemons" scripts is executed
# export OZONE_SSH_OPTS="-o BatchMode=yes -o StrictHostKeyChecking=no -o ConnectTimeout=10s"
# The built-in ssh handler will limit itself to 10 simultaneous connections.
# For pdsh users, this sets the fanout size ( -f )
# Change this to increase/decrease as necessary.
# export OZONE_SSH_PARALLEL=10
# Filename which contains all of the hosts for any remote execution
# helper scripts # such as workers.sh, start-ozone.sh, etc.
# export OZONE_WORKERS="${OZONE_CONF_DIR}/workers"
###
# Options for all daemons
###
#
#
# Many options may also be specified as Java properties. It is
# very common, and in many cases, desirable, to hard-set these
# in daemon _OPTS variables. Where applicable, the appropriate
# Java property is also identified. Note that many are re-used
# or set differently in certain contexts (e.g., secure vs
# non-secure)
#
# Where (primarily) daemon log files are stored.
# ${OZONE_HOME}/logs by default.
# Java property: hadoop.log.dir
# export OZONE_LOG_DIR=${OZONE_HOME}/logs
# A string representing this instance of Ozone. $USER by default.
# This is used in writing log and pid files, so keep that in mind!
# Java property: hadoop.id.str
# export OZONE_IDENT_STRING=$USER
# How many seconds to pause after stopping a daemon
# export OZONE_STOP_TIMEOUT=5
# Where pid files are stored. /tmp by default.
# export OZONE_PID_DIR=/tmp
# Default log4j setting for interactive commands
# Java property: hadoop.root.logger
# export OZONE_ROOT_LOGGER=INFO,console
# Default log4j setting for daemons spawned explicitly by
# --daemon option of ozone command.
# Java property: hadoop.root.logger
# export OZONE_DAEMON_ROOT_LOGGER=INFO,RFA
# Default log level and output location for security-related messages.
# You will almost certainly want to change this on a per-daemon basis via
# the Java property (i.e., -Dhadoop.security.logger=foo).
# Java property: hadoop.security.logger
# export OZONE_SECURITY_LOGGER=INFO,NullAppender
# Default process priority level
# Note that sub-processes will also run at this level!
# export OZONE_NICENESS=0
# Default name for the service level authorization file
# Java property: hadoop.policy.file
# export OZONE_POLICYFILE="hadoop-policy.xml"
#
# NOTE: this is not used by default! <-----
# You can define variables right here and then re-use them later on.
# For example, it is common to use the same garbage collection settings
# for all the daemons. So one could define:
#
# export OZONE_GC_SETTINGS="-verbose:gc -XX:+PrintGCDetails -XX:+PrintGCTimeStamps -XX:+PrintGCDateStamps"
#
# .. and then use it when setting OZONE_OM_OPTS, etc. below
# Use G1GC
# Set GC threads as 12, which is ~5/8 of 20 cores
# TODO: set heap size fixed for each process
export OZONE_GC_SETTINGS="-XX:+UseG1GC -XX:InitiatingHeapOccupancyPercent=20 -verbose:gc -XX:+PrintGCDetails -XX:MaxGCPauseMillis=100 -XX:ParallelGCThreads=16"
# Workaround for OZONE_XX_OPTS not working yet
# export OZONE_OPTS="${OZONE_GC_SETTINGS}"
###
# Secure/privileged execution
###
#
# Out of the box, Ozone uses jsvc from Apache Commons to launch daemons
# on privileged ports. This functionality can be replaced by providing
# custom functions. See ozone-functions.sh for more information.
#
# The jsvc implementation to use. Jsvc is required to run secure datanodes
# that bind to privileged ports to provide authentication of data transfer
# protocol. Jsvc is not required if SASL is configured for authentication of
# data transfer protocol using non-privileged ports.
# export JSVC_HOME=/usr/bin
#
# This directory contains pids for secure and privileged processes.
#export OZONE_SECURE_PID_DIR=${OZONE_PID_DIR}
#
# This directory contains the logs for secure and privileged processes.
# Java property: hadoop.log.dir
# export OZONE_SECURE_LOG=${OZONE_LOG_DIR}
#
# When running a secure daemon, the default value of OZONE_IDENT_STRING
# ends up being a bit bogus. Therefore, by default, the code will
# replace OZONE_IDENT_STRING with OZONE_xx_SECURE_USER. If one wants
# to keep OZONE_IDENT_STRING untouched, then uncomment this line.
# export OZONE_SECURE_IDENT_PRESERVE="true"
###
# Ozone Manager specific parameters
###
# Specify the JVM options to be used when starting the Ozone Manager.
# These options will be appended to the options specified as OZONE_OPTS
# and therefore may override any similar flags set in OZONE_OPTS
#
export OZONE_OM_OPTS="${OZONE_GC_SETTINGS}"
###
# Ozone DataNode specific parameters
###
# Specify the JVM options to be used when starting Ozone DataNodes.
# These options will be appended to the options specified as OZONE_OPTS
# and therefore may override any similar flags set in OZONE_OPTS
#
export OZONE_DATANODE_OPTS="${OZONE_GC_SETTINGS}"
###
# HDFS StorageContainerManager specific parameters
###
# Specify the JVM options to be used when starting the HDFS Storage Container Manager.
# These options will be appended to the options specified as OZONE_OPTS
# and therefore may override any similar flags set in OZONE_OPTS
#
export OZONE_SCM_OPTS="${OZONE_GC_SETTINGS}"
###
# Advanced Users Only!
###
#
# When building Ozone, one can add the class paths to the commands
# via this special env var:
# export OZONE_ENABLE_BUILD_PATHS="true"
#
# To prevent accidents, shell commands be (superficially) locked
# to only allow certain users to execute certain subcommands.
# It uses the format of (command)_(subcommand)_USER.
#
# For example, to limit who can execute the om command,
export OZONE_OM_USER=ozone
DEBUG: Found ozone-config.sh in /opt/ozone/ozone-1.1.0/libexec
DEBUG: OZONE_LIBEXEC_DIR = /opt/ozone/ozone-1.1.0/libexec
DEBUG: OZONE_HOME = /opt/ozone/ozone-1.1.0
DEBUG: OZONE_OPTS = -Djava.net.preferIPv4Stack=true
DEBUG: HADOOP_OZONE_HOME = /opt/ozone/ozone-1.1.0
DEBUG: WARNING: Setting deprecated HADOOP_OZONE_HOME to match OZONE_HOME for backward compatibility.
DEBUG: HADOOP_HOME = /opt/ozone/ozone-1.1.0
DEBUG: WARNING: Setting deprecated HADOOP_HOME to match OZONE_HOME for backward compatibility.
DEBUG: HADOOP_LIBEXEC_DIR = /opt/ozone/ozone-1.1.0/libexec
DEBUG: WARNING: Setting deprecated HADOOP_LIBEXEC_DIR to match OZONE_LIBEXEC_DIR for backward compatibility.
DEBUG: HADOOP_OPTS = -Djava.net.preferIPv4Stack=true
DEBUG: WARNING: Setting deprecated HADOOP_OPTS to match OZONE_OPTS for backward compatibility.
DEBUG: HADOOP_OS_TYPE = Linux
DEBUG: WARNING: Setting deprecated HADOOP_OS_TYPE to match OZONE_OS_TYPE for backward compatibility.
DEBUG: Already bootstrapped Ozone
DEBUG: ozone_parse_args: processing om
DEBUG: ozone_parse: asking caller to skip 0
DEBUG: OZONE_CONF_DIR = /opt/ozone/ozone-1.1.0/etc/hadoop
DEBUG: HADOOP_CONF_DIR = /opt/ozone/ozone-1.1.0/etc/hadoop
DEBUG: WARNING: Setting deprecated HADOOP_CONF_DIR to match OZONE_CONF_DIR for backward compatibility.
DEBUG: shellprofiles: /opt/ozone/ozone-1.1.0/libexec/shellprofile.d/hadoop-ozone-manager.sh /opt/ozone/ozone-1.1.0/libexec/shellprofile.d/hadoop-ozone.sh
DEBUG: Profiles: importing /opt/ozone/ozone-1.1.0/libexec/shellprofile.d/hadoop-ozone-manager.sh
DEBUG: OZONE_SHELL_PROFILES accepted ozone_manager
DEBUG: Profiles: importing /opt/ozone/ozone-1.1.0/libexec/shellprofile.d/hadoop-ozone.sh
DEBUG: OZONE_SHELL_PROFILES declined ozone
DEBUG: Initialize CLASSPATH
DEBUG: HADOOP_DAEMON_ROOT_LOGGER = INFO,RFA
DEBUG: WARNING: Setting deprecated HADOOP_DAEMON_ROOT_LOGGER to match OZONE_DAEMON_ROOT_LOGGER for backward compatibility.
DEBUG: HADOOP_LOGFILE = ozone.log
DEBUG: WARNING: Setting deprecated HADOOP_LOGFILE to match OZONE_LOGFILE for backward compatibility.
DEBUG: HADOOP_LOGLEVEL = INFO
DEBUG: WARNING: Setting deprecated HADOOP_LOGLEVEL to match OZONE_LOGLEVEL for backward compatibility.
DEBUG: HADOOP_LOG_DIR = /opt/ozone/ozone-1.1.0/logs
DEBUG: WARNING: Setting deprecated HADOOP_LOG_DIR to match OZONE_LOG_DIR for backward compatibility.
DEBUG: HADOOP_ROOT_LOGGER = INFO,console
DEBUG: WARNING: Setting deprecated HADOOP_ROOT_LOGGER to match OZONE_ROOT_LOGGER for backward compatibility.
DEBUG: HADOOP_SECURE_LOG_DIR = /opt/ozone/ozone-1.1.0/logs
DEBUG: WARNING: Setting deprecated HADOOP_SECURE_LOG_DIR to match OZONE_SECURE_LOG_DIR for backward compatibility.
DEBUG: HADOOP_SECURITY_LOGGER = INFO,NullAppender
DEBUG: WARNING: Setting deprecated HADOOP_SECURITY_LOGGER to match OZONE_SECURITY_LOGGER for backward compatibility.
DEBUG: HADOOP_IDENT_STRING = ozone
DEBUG: WARNING: Setting deprecated HADOOP_IDENT_STRING to match OZONE_IDENT_STRING for backward compatibility.
DEBUG: HADOOP_NICENESS = 0
DEBUG: WARNING: Setting deprecated HADOOP_NICENESS to match OZONE_NICENESS for backward compatibility.
DEBUG: HADOOP_POLICYFILE = hadoop-policy.xml
DEBUG: WARNING: Setting deprecated HADOOP_POLICYFILE to match OZONE_POLICYFILE for backward compatibility.
DEBUG: HADOOP_PID_DIR = /tmp
DEBUG: WARNING: Setting deprecated HADOOP_PID_DIR to match OZONE_PID_DIR for backward compatibility.
DEBUG: HADOOP_SECURE_PID_DIR = /tmp
DEBUG: WARNING: Setting deprecated HADOOP_SECURE_PID_DIR to match OZONE_SECURE_PID_DIR for backward compatibility.
DEBUG: HADOOP_SSH_OPTS = -o BatchMode=yes -o StrictHostKeyChecking=no -o ConnectTimeout=10s
DEBUG: WARNING: Setting deprecated HADOOP_SSH_OPTS to match OZONE_SSH_OPTS for backward compatibility.
DEBUG: HADOOP_SSH_PARALLEL = 10
DEBUG: WARNING: Setting deprecated HADOOP_SSH_PARALLEL to match OZONE_SSH_PARALLEL for backward compatibility.
DEBUG: HADOOP_STOP_TIMEOUT = 5
DEBUG: WARNING: Setting deprecated HADOOP_STOP_TIMEOUT to match OZONE_STOP_TIMEOUT for backward compatibility.
DEBUG: Initial CLASSPATH=/opt/ozone/ozone-1.1.0/share/ozone/lib/kerb-simplekdc-1.0.1.jar
DEBUG: Append CLASSPATH: /opt/ozone/ozone-1.1.0/share/ozone/lib/jackson-annotations-2.12.1.jar
DEBUG: Append CLASSPATH: /opt/ozone/ozone-1.1.0/share/ozone/lib/okhttp-4.2.2.jar
DEBUG: Append CLASSPATH: /opt/ozone/ozone-1.1.0/share/ozone/lib/protobuf-java-2.5.0.jar
DEBUG: Append CLASSPATH: /opt/ozone/ozone-1.1.0/share/ozone/lib/slf4j-log4j12-1.7.30.jar
DEBUG: Append CLASSPATH: /opt/ozone/ozone-1.1.0/share/ozone/lib/log4j-api-2.13.3.jar
DEBUG: Append CLASSPATH: /opt/ozone/ozone-1.1.0/share/ozone/lib/hadoop-hdds-hadoop-dependency-server-1.1.0.jar
DEBUG: Append CLASSPATH: /opt/ozone/ozone-1.1.0/share/ozone/lib/commons-validator-1.6.jar
DEBUG: Append CLASSPATH: /opt/ozone/ozone-1.1.0/share/ozone/lib/jetty-security-9.4.35.v20201120.jar
DEBUG: Append CLASSPATH: /opt/ozone/ozone-1.1.0/share/ozone/lib/bcpkix-jdk15on-1.67.jar
DEBUG: Append CLASSPATH: /opt/ozone/ozone-1.1.0/share/ozone/lib/ratis-server-2.0.0.jar
DEBUG: Append CLASSPATH: /opt/ozone/ozone-1.1.0/share/ozone/lib/kerb-core-1.0.1.jar
DEBUG: Append CLASSPATH: /opt/ozone/ozone-1.1.0/share/ozone/lib/picocli-4.4.0.jar
DEBUG: Append CLASSPATH: /opt/ozone/ozone-1.1.0/share/ozone/lib/jsr305-3.0.0.jar
DEBUG: Append CLASSPATH: /opt/ozone/ozone-1.1.0/share/ozone/lib/ratis-server-api-2.0.0.jar
DEBUG: Append CLASSPATH: /opt/ozone/ozone-1.1.0/share/ozone/lib/j2objc-annotations-1.3.jar
DEBUG: Append CLASSPATH: /opt/ozone/ozone-1.1.0/share/ozone/lib/leveldbjni-all-1.8.jar
DEBUG: Append CLASSPATH: /opt/ozone/ozone-1.1.0/share/ozone/lib/jaeger-tracerresolver-1.2.0.jar
DEBUG: Append CLASSPATH: /opt/ozone/ozone-1.1.0/share/ozone/lib/htrace-core4-4.1.0-incubating.jar
DEBUG: Append CLASSPATH: /opt/ozone/ozone-1.1.0/share/ozone/lib/kerb-util-1.0.1.jar
DEBUG: Append CLASSPATH: /opt/ozone/ozone-1.1.0/share/ozone/lib/kotlin-stdlib-common-1.4.31.jar
DEBUG: Append CLASSPATH: /opt/ozone/ozone-1.1.0/share/ozone/lib/javax.activation-api-1.2.0.jar
DEBUG: Append CLASSPATH: /opt/ozone/ozone-1.1.0/share/ozone/lib/jaeger-thrift-1.2.0.jar
DEBUG: Append CLASSPATH: /opt/ozone/ozone-1.1.0/share/ozone/lib/commons-logging-1.2.jar
DEBUG: Append CLASSPATH: /opt/ozone/ozone-1.1.0/share/ozone/lib/hadoop-auth-3.2.2.jar
DEBUG: Append CLASSPATH: /opt/ozone/ozone-1.1.0/share/ozone/lib/kerby-xdr-1.0.1.jar
DEBUG: Append CLASSPATH: /opt/ozone/ozone-1.1.0/share/ozone/lib/jackson-datatype-jsr310-2.12.1.jar
DEBUG: Append CLASSPATH: /opt/ozone/ozone-1.1.0/share/ozone/lib/httpcore-4.4.13.jar
DEBUG: Append CLASSPATH: /opt/ozone/ozone-1.1.0/share/ozone/lib/hadoop-hdds-interface-admin-1.1.0.jar
DEBUG: Append CLASSPATH: /opt/ozone/ozone-1.1.0/share/ozone/lib/opentracing-tracerresolver-0.1.8.jar
DEBUG: Append CLASSPATH: /opt/ozone/ozone-1.1.0/share/ozone/lib/commons-net-3.6.jar
DEBUG: Append CLASSPATH: /opt/ozone/ozone-1.1.0/share/ozone/lib/hadoop-common-3.2.2.jar
DEBUG: Append CLASSPATH: /opt/ozone/ozone-1.1.0/share/ozone/lib/ratis-netty-2.0.0.jar
DEBUG: Append CLASSPATH: /opt/ozone/ozone-1.1.0/share/ozone/lib/snakeyaml-1.26.jar
DEBUG: Append CLASSPATH: /opt/ozone/ozone-1.1.0/share/ozone/lib/jaeger-core-1.2.0.jar
DEBUG: Append CLASSPATH: /opt/ozone/ozone-1.1.0/share/ozone/lib/error_prone_annotations-2.2.0.jar
DEBUG: Append CLASSPATH: /opt/ozone/ozone-1.1.0/share/ozone/lib/httpclient-4.5.13.jar
DEBUG: Append CLASSPATH: /opt/ozone/ozone-1.1.0/share/ozone/lib/hadoop-hdds-hadoop-dependency-client-1.1.0.jar
DEBUG: Append CLASSPATH: /opt/ozone/ozone-1.1.0/share/ozone/lib/ratis-client-2.0.0.jar
DEBUG: Append CLASSPATH: /opt/ozone/ozone-1.1.0/share/ozone/lib/kerby-config-1.0.1.jar
DEBUG: Append CLASSPATH: /opt/ozone/ozone-1.1.0/share/ozone/lib/okio-2.2.2.jar
DEBUG: Append CLASSPATH: /opt/ozone/ozone-1.1.0/share/ozone/lib/hadoop-ozone-interface-storage-1.1.0.jar
DEBUG: Append CLASSPATH: /opt/ozone/ozone-1.1.0/share/ozone/lib/hadoop-ozone-interface-client-1.1.0.jar
DEBUG: Append CLASSPATH: /opt/ozone/ozone-1.1.0/share/ozone/lib/metrics-core-3.2.4.jar
DEBUG: Append CLASSPATH: /opt/ozone/ozone-1.1.0/share/ozone/lib/guava-28.2-jre.jar
DEBUG: Append CLASSPATH: /opt/ozone/ozone-1.1.0/share/ozone/lib/kerby-pkix-1.0.1.jar
DEBUG: Append CLASSPATH: /opt/ozone/ozone-1.1.0/share/ozone/lib/jetty-webapp-9.4.35.v20201120.jar
DEBUG: Append CLASSPATH: /opt/ozone/ozone-1.1.0/share/ozone/lib/xz-1.0.jar
DEBUG: Append CLASSPATH: /opt/ozone/ozone-1.1.0/share/ozone/lib/jsr311-api-1.1.1.jar
DEBUG: Append CLASSPATH: /opt/ozone/ozone-1.1.0/share/ozone/lib/commons-beanutils-1.9.4.jar
DEBUG: Append CLASSPATH: /opt/ozone/ozone-1.1.0/share/ozone/lib/javax.servlet-api-3.1.0.jar
DEBUG: Append CLASSPATH: /opt/ozone/ozone-1.1.0/share/ozone/lib/kerb-server-1.0.1.jar
DEBUG: Append CLASSPATH: /opt/ozone/ozone-1.1.0/share/ozone/lib/jetty-server-9.4.35.v20201120.jar
DEBUG: Append CLASSPATH: /opt/ozone/ozone-1.1.0/share/ozone/lib/jetty-util-9.4.35.v20201120.jar
DEBUG: Append CLASSPATH: /opt/ozone/ozone-1.1.0/share/ozone/lib/jackson-core-2.12.1.jar
DEBUG: Append CLASSPATH: /opt/ozone/ozone-1.1.0/share/ozone/lib/kerb-client-1.0.1.jar
DEBUG: Append CLASSPATH: /opt/ozone/ozone-1.1.0/share/ozone/lib/disruptor-3.4.2.jar
DEBUG: Append CLASSPATH: /opt/ozone/ozone-1.1.0/share/ozone/lib/libthrift-0.13.0.jar
DEBUG: Append CLASSPATH: /opt/ozone/ozone-1.1.0/share/ozone/lib/log4j-core-2.13.3.jar
DEBUG: Append CLASSPATH: /opt/ozone/ozone-1.1.0/share/ozone/lib/annotations-13.0.jar
DEBUG: Append CLASSPATH: /opt/ozone/ozone-1.1.0/share/ozone/lib/simpleclient_common-0.7.0.jar
DEBUG: Append CLASSPATH: /opt/ozone/ozone-1.1.0/share/ozone/lib/jackson-databind-2.12.1.jar
DEBUG: Append CLASSPATH: /opt/ozone/ozone-1.1.0/share/ozone/lib/ratis-thirdparty-misc-0.6.0.jar
DEBUG: Append CLASSPATH: /opt/ozone/ozone-1.1.0/share/ozone/lib/dnsjava-2.1.7.jar
DEBUG: Append CLASSPATH: /opt/ozone/ozone-1.1.0/share/ozone/lib/bcprov-jdk15on-1.67.jar
DEBUG: Append CLASSPATH: /opt/ozone/ozone-1.1.0/share/ozone/lib/commons-configuration2-2.1.1.jar
DEBUG: Append CLASSPATH: /opt/ozone/ozone-1.1.0/share/ozone/lib/json-smart-2.3.jar
DEBUG: Append CLASSPATH: /opt/ozone/ozone-1.1.0/share/ozone/lib/token-provider-1.0.1.jar
DEBUG: Append CLASSPATH: /opt/ozone/ozone-1.1.0/share/ozone/lib/log4j-1.2.17.jar
DEBUG: Append CLASSPATH: /opt/ozone/ozone-1.1.0/share/ozone/lib/commons-daemon-1.0.13.jar
DEBUG: Append CLASSPATH: /opt/ozone/ozone-1.1.0/share/ozone/lib/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar
DEBUG: Append CLASSPATH: /opt/ozone/ozone-1.1.0/share/ozone/lib/hadoop-hdds-client-1.1.0.jar
DEBUG: Append CLASSPATH: /opt/ozone/ozone-1.1.0/share/ozone/lib/commons-lang3-3.7.jar
DEBUG: Append CLASSPATH: /opt/ozone/ozone-1.1.0/share/ozone/lib/commons-compress-1.4.1.jar
DEBUG: Append CLASSPATH: /opt/ozone/ozone-1.1.0/share/ozone/lib/jetty-util-ajax-9.4.35.v20201120.jar
DEBUG: Append CLASSPATH: /opt/ozone/ozone-1.1.0/share/ozone/lib/accessors-smart-1.2.jar
DEBUG: Append CLASSPATH: /opt/ozone/ozone-1.1.0/share/ozone/lib/jetty-io-9.4.35.v20201120.jar
DEBUG: Append CLASSPATH: /opt/ozone/ozone-1.1.0/share/ozone/lib/jetty-xml-9.4.35.v20201120.jar
DEBUG: Append CLASSPATH: /opt/ozone/ozone-1.1.0/share/ozone/lib/re2j-1.1.jar
DEBUG: Append CLASSPATH: /opt/ozone/ozone-1.1.0/share/ozone/lib/commons-math3-3.1.1.jar
DEBUG: Append CLASSPATH: /opt/ozone/ozone-1.1.0/share/ozone/lib/simpleclient_dropwizard-0.7.0.jar
DEBUG: Append CLASSPATH: /opt/ozone/ozone-1.1.0/share/ozone/lib/simpleclient-0.7.0.jar
DEBUG: Append CLASSPATH: /opt/ozone/ozone-1.1.0/share/ozone/lib/ratis-metrics-2.0.0.jar
DEBUG: Append CLASSPATH: /opt/ozone/ozone-1.1.0/share/ozone/lib/rocksdbjni-6.8.1.jar
DEBUG: Append CLASSPATH: /opt/ozone/ozone-1.1.0/share/ozone/lib/asm-5.0.4.jar
DEBUG: Append CLASSPATH: /opt/ozone/ozone-1.1.0/share/ozone/lib/kerby-util-1.0.1.jar
DEBUG: Append CLASSPATH: /opt/ozone/ozone-1.1.0/share/ozone/lib/failureaccess-1.0.1.jar
DEBUG: Append CLASSPATH: /opt/ozone/ozone-1.1.0/share/ozone/lib/hadoop-ozone-common-1.1.0.jar
DEBUG: Append CLASSPATH: /opt/ozone/ozone-1.1.0/share/ozone/lib/jsp-api-2.1.jar
DEBUG: Append CLASSPATH: /opt/ozone/ozone-1.1.0/share/ozone/lib/jsch-0.1.54.jar
DEBUG: Append CLASSPATH: /opt/ozone/ozone-1.1.0/share/ozone/lib/ratis-grpc-2.0.0.jar
DEBUG: Append CLASSPATH: /opt/ozone/ozone-1.1.0/share/ozone/lib/hadoop-hdds-config-1.1.0.jar
DEBUG: Append CLASSPATH: /opt/ozone/ozone-1.1.0/share/ozone/lib/slf4j-api-1.7.30.jar
DEBUG: Append CLASSPATH: /opt/ozone/ozone-1.1.0/share/ozone/lib/hadoop-hdds-interface-client-1.1.0.jar
DEBUG: Append CLASSPATH: /opt/ozone/ozone-1.1.0/share/ozone/lib/nimbus-jose-jwt-7.9.jar
DEBUG: Append CLASSPATH: /opt/ozone/ozone-1.1.0/share/ozone/lib/commons-codec-1.11.jar
DEBUG: Append CLASSPATH: /opt/ozone/ozone-1.1.0/share/ozone/lib/commons-pool2-2.6.0.jar
DEBUG: Append CLASSPATH: /opt/ozone/ozone-1.1.0/share/ozone/lib/gson-2.2.4.jar
DEBUG: Append CLASSPATH: /opt/ozone/ozone-1.1.0/share/ozone/lib/hadoop-hdfs-3.2.2.jar
DEBUG: Append CLASSPATH: /opt/ozone/ozone-1.1.0/share/ozone/lib/opentracing-api-0.33.0.jar
DEBUG: Append CLASSPATH: /opt/ozone/ozone-1.1.0/share/ozone/lib/ratis-common-2.0.0.jar
DEBUG: Append CLASSPATH: /opt/ozone/ozone-1.1.0/share/ozone/lib/jcip-annotations-1.0-1.jar
DEBUG: Append CLASSPATH: /opt/ozone/ozone-1.1.0/share/ozone/lib/kerb-admin-1.0.1.jar
DEBUG: Append CLASSPATH: /opt/ozone/ozone-1.1.0/share/ozone/lib/hadoop-hdds-server-framework-1.1.0.jar
DEBUG: Append CLASSPATH: /opt/ozone/ozone-1.1.0/share/ozone/lib/commons-io-2.5.jar
DEBUG: Append CLASSPATH: /opt/ozone/ozone-1.1.0/share/ozone/lib/hadoop-hdds-interface-server-1.1.0.jar
DEBUG: Append CLASSPATH: /opt/ozone/ozone-1.1.0/share/ozone/lib/kotlin-stdlib-1.4.31.jar
DEBUG: Append CLASSPATH: /opt/ozone/ozone-1.1.0/share/ozone/lib/opentracing-noop-0.33.0.jar
DEBUG: Append CLASSPATH: /opt/ozone/ozone-1.1.0/share/ozone/lib/jersey-core-1.19.jar
DEBUG: Append CLASSPATH: /opt/ozone/ozone-1.1.0/share/ozone/lib/checker-qual-2.10.0.jar
DEBUG: Append CLASSPATH: /opt/ozone/ozone-1.1.0/share/ozone/lib/ratis-proto-2.0.0.jar
DEBUG: Append CLASSPATH: /opt/ozone/ozone-1.1.0/share/ozone/lib/opentracing-util-0.33.0.jar
DEBUG: Append CLASSPATH: /opt/ozone/ozone-1.1.0/share/ozone/lib/hadoop-ozone-client-1.1.0.jar
DEBUG: Append CLASSPATH: /opt/ozone/ozone-1.1.0/share/ozone/lib/hadoop-annotations-3.2.2.jar
DEBUG: Append CLASSPATH: /opt/ozone/ozone-1.1.0/share/ozone/lib/commons-cli-1.2.jar
DEBUG: Append CLASSPATH: /opt/ozone/ozone-1.1.0/share/ozone/lib/hadoop-hdds-common-1.1.0.jar
DEBUG: Append CLASSPATH: /opt/ozone/ozone-1.1.0/share/ozone/lib/woodstox-core-5.0.3.jar
DEBUG: Append CLASSPATH: /opt/ozone/ozone-1.1.0/share/ozone/lib/javax.annotation-api-1.2.jar
DEBUG: Append CLASSPATH: /opt/ozone/ozone-1.1.0/share/ozone/lib/jetty-servlet-9.4.35.v20201120.jar
DEBUG: Append CLASSPATH: /opt/ozone/ozone-1.1.0/share/ozone/lib/kerby-asn1-1.0.1.jar
DEBUG: Append CLASSPATH: /opt/ozone/ozone-1.1.0/share/ozone/lib/stax2-api-3.1.4.jar
DEBUG: Append CLASSPATH: /opt/ozone/ozone-1.1.0/share/ozone/lib/commons-collections-3.2.2.jar
DEBUG: Append CLASSPATH: /opt/ozone/ozone-1.1.0/share/ozone/lib/commons-digester-1.8.1.jar
DEBUG: Append CLASSPATH: /opt/ozone/ozone-1.1.0/share/ozone/lib/commons-text-1.4.jar
DEBUG: Append CLASSPATH: /opt/ozone/ozone-1.1.0/share/ozone/lib/jersey-servlet-1.19.jar
DEBUG: Append CLASSPATH: /opt/ozone/ozone-1.1.0/share/ozone/lib/kerb-identity-1.0.1.jar
DEBUG: Append CLASSPATH: /opt/ozone/ozone-1.1.0/share/ozone/lib/hadoop-hdfs-client-3.2.2.jar
DEBUG: Append CLASSPATH: /opt/ozone/ozone-1.1.0/share/ozone/lib/kerb-common-1.0.1.jar
DEBUG: Append CLASSPATH: /opt/ozone/ozone-1.1.0/share/ozone/lib/jaeger-client-1.2.0.jar
DEBUG: Append CLASSPATH: /opt/ozone/ozone-1.1.0/share/ozone/lib/jersey-server-1.19.jar
DEBUG: Append CLASSPATH: /opt/ozone/ozone-1.1.0/share/ozone/lib/jetty-http-9.4.35.v20201120.jar
DEBUG: Append CLASSPATH: /opt/ozone/ozone-1.1.0/share/ozone/lib/kerb-crypto-1.0.1.jar
DEBUG: Append CLASSPATH: /opt/ozone/ozone-1.1.0/share/ozone/web
DEBUG: Append CLASSPATH: /opt/ozone/ozone-1.1.0/share/ozone/lib/hadoop-ozone-ozone-manager-1.1.0.jar
No '-XX:...' jvm parameters are set. Adding safer GC settings '-XX:ParallelGCThreads=8 -XX:+UseConcMarkSweepGC -XX:CMSInitiatingOccupancyFraction=70 -XX:+CMSParallelRemarkEnabled' to the OZONE_OPTS
DEBUG: Appending OZONE_OM_OPTS onto OZONE_OPTS
DEBUG: No secure classname defined.
DEBUG: Profiles: ozone_manager finalize
DEBUG: Prepend CLASSPATH: /opt/ozone/ozone-1.1.0/etc/hadoop
DEBUG: OZONE_OPTS accepted -Dhadoop.log.dir=/opt/ozone/ozone-1.1.0/logs
DEBUG: OZONE_OPTS accepted -Dhadoop.log.file=ozone.log
DEBUG: OZONE_OPTS accepted -Dhadoop.home.dir=/opt/ozone/ozone-1.1.0
DEBUG: OZONE_OPTS accepted -Dhadoop.id.str=ozone
DEBUG: OZONE_OPTS accepted -Dhadoop.root.logger=INFO,console
DEBUG: OZONE_OPTS accepted -Dhadoop.policy.file=hadoop-policy.xml
DEBUG: OZONE_OPTS accepted -Dhadoop.security.logger=INFO,NullAppender
DEBUG: Final CLASSPATH: /opt/ozone/ozone-1.1.0/etc/hadoop:/opt/ozone/ozone-1.1.0/share/ozone/lib/kerb-simplekdc-1.0.1.jar:/opt/ozone/ozone-1.1.0/share/ozone/lib/jackson-annotations-2.12.1.jar:/opt/ozone/ozone-1.1.0/share/ozone/lib/okhttp-4.2.2.jar:/opt/ozone/ozone-1.1.0/share/ozone/lib/protobuf-java-2.5.0.jar:/opt/ozone/ozone-1.1.0/share/ozone/lib/slf4j-log4j12-1.7.30.jar:/opt/ozone/ozone-1.1.0/share/ozone/lib/log4j-api-2.13.3.jar:/opt/ozone/ozone-1.1.0/share/ozone/lib/hadoop-hdds-hadoop-dependency-server-1.1.0.jar:/opt/ozone/ozone-1.1.0/share/ozone/lib/commons-validator-1.6.jar:/opt/ozone/ozone-1.1.0/share/ozone/lib/jetty-security-9.4.35.v20201120.jar:/opt/ozone/ozone-1.1.0/share/ozone/lib/bcpkix-jdk15on-1.67.jar:/opt/ozone/ozone-1.1.0/share/ozone/lib/ratis-server-2.0.0.jar:/opt/ozone/ozone-1.1.0/share/ozone/lib/kerb-core-1.0.1.jar:/opt/ozone/ozone-1.1.0/share/ozone/lib/picocli-4.4.0.jar:/opt/ozone/ozone-1.1.0/share/ozone/lib/jsr305-3.0.0.jar:/opt/ozone/ozone-1.1.0/share/ozone/lib/ratis-server-api-2.0.0.jar:/opt/ozone/ozone-1.1.0/share/ozone/lib/j2objc-annotations-1.3.jar:/opt/ozone/ozone-1.1.0/share/ozone/lib/leveldbjni-all-1.8.jar:/opt/ozone/ozone-1.1.0/share/ozone/lib/jaeger-tracerresolver-1.2.0.jar:/opt/ozone/ozone-1.1.0/share/ozone/lib/htrace-core4-4.1.0-incubating.jar:/opt/ozone/ozone-1.1.0/share/ozone/lib/kerb-util-1.0.1.jar:/opt/ozone/ozone-1.1.0/share/ozone/lib/kotlin-stdlib-common-1.4.31.jar:/opt/ozone/ozone-1.1.0/share/ozone/lib/javax.activation-api-1.2.0.jar:/opt/ozone/ozone-1.1.0/share/ozone/lib/jaeger-thrift-1.2.0.jar:/opt/ozone/ozone-1.1.0/share/ozone/lib/commons-logging-1.2.jar:/opt/ozone/ozone-1.1.0/share/ozone/lib/hadoop-auth-3.2.2.jar:/opt/ozone/ozone-1.1.0/share/ozone/lib/kerby-xdr-1.0.1.jar:/opt/ozone/ozone-1.1.0/share/ozone/lib/jackson-datatype-jsr310-2.12.1.jar:/opt/ozone/ozone-1.1.0/share/ozone/lib/httpcore-4.4.13.jar:/opt/ozone/ozone-1.1.0/share/ozone/lib/hadoop-hdds-interface-admin-1.1.0.jar:/opt/ozone/ozone-1.1.0/share/ozone/lib/opentracing-tracerresolver-0.1.8.jar:/opt/ozone/ozone-1.1.0/share/ozone/lib/commons-net-3.6.jar:/opt/ozone/ozone-1.1.0/share/ozone/lib/hadoop-common-3.2.2.jar:/opt/ozone/ozone-1.1.0/share/ozone/lib/ratis-netty-2.0.0.jar:/opt/ozone/ozone-1.1.0/share/ozone/lib/snakeyaml-1.26.jar:/opt/ozone/ozone-1.1.0/share/ozone/lib/jaeger-core-1.2.0.jar:/opt/ozone/ozone-1.1.0/share/ozone/lib/error_prone_annotations-2.2.0.jar:/opt/ozone/ozone-1.1.0/share/ozone/lib/httpclient-4.5.13.jar:/opt/ozone/ozone-1.1.0/share/ozone/lib/hadoop-hdds-hadoop-dependency-client-1.1.0.jar:/opt/ozone/ozone-1.1.0/share/ozone/lib/ratis-client-2.0.0.jar:/opt/ozone/ozone-1.1.0/share/ozone/lib/kerby-config-1.0.1.jar:/opt/ozone/ozone-1.1.0/share/ozone/lib/okio-2.2.2.jar:/opt/ozone/ozone-1.1.0/share/ozone/lib/hadoop-ozone-interface-storage-1.1.0.jar:/opt/ozone/ozone-1.1.0/share/ozone/lib/hadoop-ozone-interface-client-1.1.0.jar:/opt/ozone/ozone-1.1.0/share/ozone/lib/metrics-core-3.2.4.jar:/opt/ozone/ozone-1.1.0/share/ozone/lib/guava-28.2-jre.jar:/opt/ozone/ozone-1.1.0/share/ozone/lib/kerby-pkix-1.0.1.jar:/opt/ozone/ozone-1.1.0/share/ozone/lib/jetty-webapp-9.4.35.v20201120.jar:/opt/ozone/ozone-1.1.0/share/ozone/lib/xz-1.0.jar:/opt/ozone/ozone-1.1.0/share/ozone/lib/jsr311-api-1.1.1.jar:/opt/ozone/ozone-1.1.0/share/ozone/lib/commons-beanutils-1.9.4.jar:/opt/ozone/ozone-1.1.0/share/ozone/lib/javax.servlet-api-3.1.0.jar:/opt/ozone/ozone-1.1.0/share/ozone/lib/kerb-server-1.0.1.jar:/opt/ozone/ozone-1.1.0/share/ozone/lib/jetty-server-9.4.35.v20201120.jar:/opt/ozone/ozone-1.1.0/share/ozone/lib/jetty-util-9.4.35.v20201120.jar:/opt/ozone/ozone-1.1.0/share/ozone/lib/jackson-core-2.12.1.jar:/opt/ozone/ozone-1.1.0/share/ozone/lib/kerb-client-1.0.1.jar:/opt/ozone/ozone-1.1.0/share/ozone/lib/disruptor-3.4.2.jar:/opt/ozone/ozone-1.1.0/share/ozone/lib/libthrift-0.13.0.jar:/opt/ozone/ozone-1.1.0/share/ozone/lib/log4j-core-2.13.3.jar:/opt/ozone/ozone-1.1.0/share/ozone/lib/annotations-13.0.jar:/opt/ozone/ozone-1.1.0/share/ozone/lib/simpleclient_common-0.7.0.jar:/opt/ozone/ozone-1.1.0/share/ozone/lib/jackson-databind-2.12.1.jar:/opt/ozone/ozone-1.1.0/share/ozone/lib/ratis-thirdparty-misc-0.6.0.jar:/opt/ozone/ozone-1.1.0/share/ozone/lib/dnsjava-2.1.7.jar:/opt/ozone/ozone-1.1.0/share/ozone/lib/bcprov-jdk15on-1.67.jar:/opt/ozone/ozone-1.1.0/share/ozone/lib/commons-configuration2-2.1.1.jar:/opt/ozone/ozone-1.1.0/share/ozone/lib/json-smart-2.3.jar:/opt/ozone/ozone-1.1.0/share/ozone/lib/token-provider-1.0.1.jar:/opt/ozone/ozone-1.1.0/share/ozone/lib/log4j-1.2.17.jar:/opt/ozone/ozone-1.1.0/share/ozone/lib/commons-daemon-1.0.13.jar:/opt/ozone/ozone-1.1.0/share/ozone/lib/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar:/opt/ozone/ozone-1.1.0/share/ozone/lib/hadoop-hdds-client-1.1.0.jar:/opt/ozone/ozone-1.1.0/share/ozone/lib/commons-lang3-3.7.jar:/opt/ozone/ozone-1.1.0/share/ozone/lib/commons-compress-1.4.1.jar:/opt/ozone/ozone-1.1.0/share/ozone/lib/jetty-util-ajax-9.4.35.v20201120.jar:/opt/ozone/ozone-1.1.0/share/ozone/lib/accessors-smart-1.2.jar:/opt/ozone/ozone-1.1.0/share/ozone/lib/jetty-io-9.4.35.v20201120.jar:/opt/ozone/ozone-1.1.0/share/ozone/lib/jetty-xml-9.4.35.v20201120.jar:/opt/ozone/ozone-1.1.0/share/ozone/lib/re2j-1.1.jar:/opt/ozone/ozone-1.1.0/share/ozone/lib/commons-math3-3.1.1.jar:/opt/ozone/ozone-1.1.0/share/ozone/lib/simpleclient_dropwizard-0.7.0.jar:/opt/ozone/ozone-1.1.0/share/ozone/lib/simpleclient-0.7.0.jar:/opt/ozone/ozone-1.1.0/share/ozone/lib/ratis-metrics-2.0.0.jar:/opt/ozone/ozone-1.1.0/share/ozone/lib/rocksdbjni-6.8.1.jar:/opt/ozone/ozone-1.1.0/share/ozone/lib/asm-5.0.4.jar:/opt/ozone/ozone-1.1.0/share/ozone/lib/kerby-util-1.0.1.jar:/opt/ozone/ozone-1.1.0/share/ozone/lib/failureaccess-1.0.1.jar:/opt/ozone/ozone-1.1.0/share/ozone/lib/hadoop-ozone-common-1.1.0.jar:/opt/ozone/ozone-1.1.0/share/ozone/lib/jsp-api-2.1.jar:/opt/ozone/ozone-1.1.0/share/ozone/lib/jsch-0.1.54.jar:/opt/ozone/ozone-1.1.0/share/ozone/lib/ratis-grpc-2.0.0.jar:/opt/ozone/ozone-1.1.0/share/ozone/lib/hadoop-hdds-config-1.1.0.jar:/opt/ozone/ozone-1.1.0/share/ozone/lib/slf4j-api-1.7.30.jar:/opt/ozone/ozone-1.1.0/share/ozone/lib/hadoop-hdds-interface-client-1.1.0.jar:/opt/ozone/ozone-1.1.0/share/ozone/lib/nimbus-jose-jwt-7.9.jar:/opt/ozone/ozone-1.1.0/share/ozone/lib/commons-codec-1.11.jar:/opt/ozone/ozone-1.1.0/share/ozone/lib/commons-pool2-2.6.0.jar:/opt/ozone/ozone-1.1.0/share/ozone/lib/gson-2.2.4.jar:/opt/ozone/ozone-1.1.0/share/ozone/lib/hadoop-hdfs-3.2.2.jar:/opt/ozone/ozone-1.1.0/share/ozone/lib/opentracing-api-0.33.0.jar:/opt/ozone/ozone-1.1.0/share/ozone/lib/ratis-common-2.0.0.jar:/opt/ozone/ozone-1.1.0/share/ozone/lib/jcip-annotations-1.0-1.jar:/opt/ozone/ozone-1.1.0/share/ozone/lib/kerb-admin-1.0.1.jar:/opt/ozone/ozone-1.1.0/share/ozone/lib/hadoop-hdds-server-framework-1.1.0.jar:/opt/ozone/ozone-1.1.0/share/ozone/lib/commons-io-2.5.jar:/opt/ozone/ozone-1.1.0/share/ozone/lib/hadoop-hdds-interface-server-1.1.0.jar:/opt/ozone/ozone-1.1.0/share/ozone/lib/kotlin-stdlib-1.4.31.jar:/opt/ozone/ozone-1.1.0/share/ozone/lib/opentracing-noop-0.33.0.jar:/opt/ozone/ozone-1.1.0/share/ozone/lib/jersey-core-1.19.jar:/opt/ozone/ozone-1.1.0/share/ozone/lib/checker-qual-2.10.0.jar:/opt/ozone/ozone-1.1.0/share/ozone/lib/ratis-proto-2.0.0.jar:/opt/ozone/ozone-1.1.0/share/ozone/lib/opentracing-util-0.33.0.jar:/opt/ozone/ozone-1.1.0/share/ozone/lib/hadoop-ozone-client-1.1.0.jar:/opt/ozone/ozone-1.1.0/share/ozone/lib/hadoop-annotations-3.2.2.jar:/opt/ozone/ozone-1.1.0/share/ozone/lib/commons-cli-1.2.jar:/opt/ozone/ozone-1.1.0/share/ozone/lib/hadoop-hdds-common-1.1.0.jar:/opt/ozone/ozone-1.1.0/share/ozone/lib/woodstox-core-5.0.3.jar:/opt/ozone/ozone-1.1.0/share/ozone/lib/javax.annotation-api-1.2.jar:/opt/ozone/ozone-1.1.0/share/ozone/lib/jetty-servlet-9.4.35.v20201120.jar:/opt/ozone/ozone-1.1.0/share/ozone/lib/kerby-asn1-1.0.1.jar:/opt/ozone/ozone-1.1.0/share/ozone/lib/stax2-api-3.1.4.jar:/opt/ozone/ozone-1.1.0/share/ozone/lib/commons-collections-3.2.2.jar:/opt/ozone/ozone-1.1.0/share/ozone/lib/commons-digester-1.8.1.jar:/opt/ozone/ozone-1.1.0/share/ozone/lib/commons-text-1.4.jar:/opt/ozone/ozone-1.1.0/share/ozone/lib/jersey-servlet-1.19.jar:/opt/ozone/ozone-1.1.0/share/ozone/lib/kerb-identity-1.0.1.jar:/opt/ozone/ozone-1.1.0/share/ozone/lib/hadoop-hdfs-client-3.2.2.jar:/opt/ozone/ozone-1.1.0/share/ozone/lib/kerb-common-1.0.1.jar:/opt/ozone/ozone-1.1.0/share/ozone/lib/jaeger-client-1.2.0.jar:/opt/ozone/ozone-1.1.0/share/ozone/lib/jersey-server-1.19.jar:/opt/ozone/ozone-1.1.0/share/ozone/lib/jetty-http-9.4.35.v20201120.jar:/opt/ozone/ozone-1.1.0/share/ozone/lib/kerb-crypto-1.0.1.jar:/opt/ozone/ozone-1.1.0/share/ozone/web:/opt/ozone/ozone-1.1.0/share/ozone/lib/hadoop-ozone-ozone-manager-1.1.0.jar
DEBUG: Final OZONE_OPTS: -Djava.net.preferIPv4Stack=true -XX:ParallelGCThreads=8 -XX:+UseConcMarkSweepGC -XX:CMSInitiatingOccupancyFraction=70 -XX:+CMSParallelRemarkEnabled -Dlog4j2.contextSelector=org.apache.logging.log4j.core.async.AsyncLoggerContextSelector -Dorg.apache.ratis.thirdparty.io.netty.leakDetection.level=disabled -Dorg.apache.ratis.thirdparty.io.netty.allocator.useCacheForAllThreads=false -XX:+UseG1GC -XX:InitiatingHeapOccupancyPercent=20 -verbose:gc -XX:+PrintGCDetails -XX:MaxGCPauseMillis=100 -XX:ParallelGCThreads=16 -Dlog4j.configurationFile=/opt/ozone/ozone-1.1.0/etc/hadoop/om-audit-log4j2.properties -Dhadoop.log.dir=/opt/ozone/ozone-1.1.0/logs -Dhadoop.log.file=ozone.log -Dhadoop.home.dir=/opt/ozone/ozone-1.1.0 -Dhadoop.id.str=ozone -Dhadoop.root.logger=INFO,console -Dhadoop.policy.file=hadoop-policy.xml -Dhadoop.security.logger=INFO,NullAppender
DEBUG: Final JAVA_HOME: /usr/java/jdk1.8.0_162
DEBUG: java: /usr/java/jdk1.8.0_162/bin/java
DEBUG: Class name: org.apache.hadoop.ozone.om.OzoneManagerStarter
DEBUG: Command line options: --verbose
Conflicting collector combinations in option list; please refer to the release notes for the combinations allowed
Error: Could not create the Java Virtual Machine.
Error: A fatal exception has occurred. Program will exit.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment