Jobs launched via the Simulation Job Manager use a local working folder on the system.
These local temporary working files are not removed at the end of execution, but on a timed basis. This enables a later manual retrieval of results in the event of network issues.
The working file location used can be found at:
To change this location, alter the environment variable UJM_JOB_SERVER_STORAGE_PATH prior to starting the Simulation Job Manager. This will cause the Job Manager's working database and temporary files to be relocated to the new location.
The user + group for the new location should be set to the user + group that the Job Manager is running as.
The default user + group is:
The following process updates the location of a Workstation install. For this example, the new location will be referred to as /tmp/newlocation
#Change the SJM default storage path declare -x UJM_JOB_SERVER_STORAGE_PATH=/tmp/newlocation
The environment variable that changes the Thin client location must be set prior to starting the Job Manager. For this example, the new location will be referred to as /tmp/newlocation
declare -x UJM_JOB_SERVER_STORAGE_PATH=/tmp/newlocation
nohup $INSTALL_ROOT/autodesk-dssp-20YY-thinclient-RR/bin/dssp_jobserver
The nohup command ensures that the process will remain running after closing the terminal that launched the Job Manager.