Specifying Environment Variables
Explains how to set environment variables on a client node.
About this task
env.sh file in
/usr/local/mapr-loopbacknfs/conf. You cannot simply copy the
env.sh file from a server node in the cluster because the
MAPR_HOME setting would be different.The
loopbacknfs service can run either on file server nodes or
external edge nodes.
loopbacknfs running on file server node:
- If you want
loopbacknfsto avoid using the internal IP address that has been set by using theMAPR_SUBNETS(usually set throughenv_override.sh/env.shwhich is applied across all processes running in a machine), markNFS_LOOPBACK_HONOUR_SUBNETSasfalse.
loopbacknfs running on edge node:
- When
MAPR_SUBNETSenvironment variable is set on edge nodes, the intention is to divert the traffic through the intended IP address, instead of all. Whether the given subnet is to be used or not is determined by the value of theNFS_LOOPBACK_HONOUR_SUBNETSenvironment variable.
Re-registration of loopbacknfs service
- The process of re-registration of
loopbacknfswith CLDB when using or honoring subnets is done as follows:- If there is change in device address, but device address is out of the subnet, loopbacknfs does not re-register.
-
If there is change in device address and if there are no subnets at all, loopbacknfs reregisters.
Procedure
-
On a server node in the HPE Data Fabric cluster,
locate the
env.shandenv_override.shfiles in the/opt/mapr/confdirectory. If theenv_override.shfile is not present, use theenv.shfile. For more information about these files, see About env_override.sh. -
Retrieve the values for
MAPR_SUBNETSandJAVA_HOMEfrom the server files and clone them to/usr/local/mapr-loopbacknfs/conf/env.shon the client node. -
(Optional) Set the
NFS_LOOPBACK_HONOUR_SUBNETSenvironment variable to avoid re-registration whenever there is a change in any network interface. The value can be:trueto consider theMAPR_SUBNETSwhile registering with CLDB. If set totrue, re-registration does not happen when there is a change in any network interface with IP that is not in the givenMAPR_SUBNETS. If there is a change in the device address, but the device address is outside of subnet, the re-registration does not happen. Re-registration happens if there are no subnets at all and the device address has changed.falseto ignore theMAPR_SUBNETS. If set tofalse, re-registration happens when there is a change in any network interface.
For example:# export NFS_LOOPBACK_HONOUR_SUBNETS=true # export MAPR_SUBNETS=10.10.104.0/24 # env | grep SUBNET NFS_LOOPBACK_HONOUR_SUBNETS=true MAPR_SUBNETS=10.10.105.0/24,10.10.104.0/24 -
Change the
JAVA_HOMEsetting to point to the location where Java is installed on the client. -
Add the following lines to the client node
env.shfile:export MAPR_HOME=/usr/local/mapr-loopbacknfs export MAPR_TICKETFILE_LOCATION=<MAPR user ticket path>NOTETo allow impersonation, set the value forMAPR_TICKETFILE_LOCATIONto the path to themapruser ticket. -
Save and close the
env.shfile. -
Restart the
loopbacknfsservice for the changes to take effect.