This topic explains how to install VMware Tanzu GemFire from a compressed TAR file on Windows, Unix, and Linux.
Use the compressed TAR file distribution to install and configure Tanzu GemFire on every physical and virtual machine where you will run Tanzu GemFire.
Before you install Tanzu GemFire, you must complete the following prerequisites:
bin
directory under JAVA_HOME.)Complete the following steps to download:
Use the following procedure to install VMware GemFire:
Navigate to the directory where you downloaded the GemFire software, and expand the compressed TAR file after creating the path_to_product directory.
$ tar -xzvf vmware-gemfire-N.N.N.tgz -C path_to_product
path_to_product corresponds to the location where you want to install GemFire, and N.N.N is the version number.
Configure the JAVA_HOME environment variable.
If you will be using the gfsh
command-line utility then you must set JAVA_HOME to a JDK installation. For example:
UNIX and Linux (Bourne and Korn shells - sh, ksh, bash)
JAVA_HOME=/usr/java/jdk1.8.0_361
export JAVA_HOME
Windows
set JAVA_HOME="C:\Program Files\Java\jdk1.8.0_361"
This step only applies to environments where you are running GemFire processes or GemFire client applications outside of gfsh. The gfsh script sets these environment variables for you. If you are running GemFire processes or applications outside of gfsh, then configure the following environment variables for GemFire.
Set the GEMFIRE_HOME environment variable to point to your GemFire installation top-level directory. (You should see bin
, lib
, dtd
, and other directories under GEMFIRE_HOME.) The following variables definitions are examples; your installation path will vary, depending on where you install GemFire and the version (N.N.N) you are installing.
UNIX and Linux (Bourne and Korn shells - sh, ksh, bash)
GEMFIRE_HOME=/opt/vmware/vmware-gemfire-N.N.N
export GEMFIRE_HOME
Windows
set GEMFIRE_HOME=C:\vmware\gemfire\vmware-gemfire-N.N.N
Configure your GF_JAVA environment variables as shown in these examples. GF_JAVA must point to the java
executable file under your JAVA_HOME. (If you have not done so already, you should also set your JAVA_HOME variable to a supported Java installation.)
UNIX and Linux (Bourne and Korn shells - sh, ksh, bash)
GF_JAVA=$JAVA_HOME/bin/java
export GF_JAVA
Windows
set GF_JAVA=%JAVA_HOME%\bin\java.exe
Add GemFire scripts to your the PATH environment variable. For example:
UNIX and Linux (Bourne and Korn shells - sh, ksh, bash)
PATH=$PATH:$JAVA_HOME/bin:/opt/vmware/vmware-gemfire-N.N.N/bin
export PATH
Windows
set PATH=%PATH%;%JAVA_HOME%\bin;%GEMFIRE_HOME%\bin
Type gfsh version
at the command line and verify that the output lists the version of VMware GemFire that you wish to install. For example:
$ gfsh version
v10.1.0
If you want more detailed version information such as the date of the build, build number and JDK version being used, type gfsh version --full
.
Repeat this procedure for every virtual or physical machine on which you will run VMware GemFire.