Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Excerpt


VariableDescription

MZ_HOME

Example value: /opt/mz

This environment variable specifies where the software is to be installed.

Note
titleNote!

The directory must exist and be empty prior to the installation.


JAVA_HOME

Example value: /Library/Java/JavaVirtualMachines/jdk-17.0.2.jdk/Contents/Home

This environment variable specifies where the JDK is installed. For example:

Code Block
/opt/jdk-<interim.update.patch>.jdk


PATH

The search path must contain the following directories: $JAVA_HOME/bin:$MZ_HOME/bin

This environment variable specifies the search path.


Info
titleExample - Setting Environment Variables


Code Block
languagetext
themeEclipse
$ export MZ_HOME=/opt/mz
$ export JAVA_HOME=/opt/jdk/jdk-17.0.2.jdk
$ export PATH=$JAVA_HOME/bin:$MZ_HOME/bin:$PATH



...