...
Set an environment variable or use a license config file to point to your license server when running the application. To show your licenses visit the following address in your web browser: http://vfx-license:5054
License config file
Create this file in the current users home directory:
~/.das-element/license.conf
The file content is:5053@license-server
...
Environment Variable (option 1)
Set environment variable DASELEMENT_LICENSE
As - as a fallback the variable RLM_LICENSE will be used.
Should look something like this: {port}@{hostname}
. The default port is 5053
Linux
export DASELEMENT_LICENSE=
...
5053@your-license-server
Windows
setx DASELEMENT_LICENSE "
...
5053@your-license-
...
server”
Mac
launchctl setenv DASELEMENT_LICENSE
...
5053@your-license-server
License config file (option 1)
Create this file in the current users home directory:
~/.das-element/license.conf
Example file content:
Code Block |
---|
5053@your-license-server |
Environment variables file (option 3)
In the Users home directory there is a file called: variables.env
This file will be read before the software start. Add all the environment variables you need in that file.
Code Block |
---|
# Linux / MacOS
~/.das-element/variables.env
# Windows
%homepath%/.das-element/variables.env |
Example file content:
Code Block |
---|
#### point to the license server DASELEMENT_LICENSE=5053@your-license-server |
Info |
---|
For MacOS it’s way easier to use the license config file (license.conf) or environment variable file (variables.env) since environment variables might work differently depending on the OS version |