Versions Compared

Key

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

...

An instance of the Chaos License Server that uses the same user account may be installed more than once on the same internal network when on different workstations or servers to act as a redundancy measure. You can also use V-Ray environment variable VRAY_AUTH_CLIENT_FILE_PATH.

UI Text Box
typenote

The environment variable should point to the directory where the vrlclient.xml file, containing information about the license (e.g. license server IP address and port), resides.

In this case, the vrlclient.xml file could be stored on a centrally accessible location. The variable should look like:

...

VRAY_AUTH_CLIENT_FILE_PATH=//SERVER/path/to/directory/

 

UI Text Box
typenote

The environment variable should point to the directory where the vrlclient.xml file resides.

Code Block
languagetext
themeConfluence
titlevrlclient_example.xml
<VRLClient>
	<LicServer>
		<Host>IP address or FQDN of the primary license server</Host>
		<Port>30304</Port>
		<Host1>IP address or FQDN of the secondary license server if exists</Host1>
		<Port1>30304</Port1>
		<Host2>IP address or FQDN of the third license server if exists</Host2>
		<Port2>30304</Port2>
		<User></User>
		<Pass></Pass>
	</LicServer>
</VRLClient>

...