|
Error sumitting job on UNIX because of TMPDIR
Question:
I am trying to use fsubmit to submit a job on a Unix machine and get something similar to the following error:
FSUBM-E-FAILED, submission failed
-FSUBM-F-TMPNAM, error creating temporary file /a_temporary_dir_path/job_AAAe4aGxb
-SYS-E-ERRMSG, No such file or directory
Answer:
This problem is related to the TMPDIR environment variable. On some systems, this variable should be unset before you run flogicd, fcopy in batch mode or fsubmit. If you get the error as part of an fmonitor log output, do:
flogicd -kill
Unset the TMPDIR environment variable. The exact command depends on your
shell; for instance under sh it is:
export TMPDIR=
And run flogicd again:
flogicd
In all other cases, just make sure you unset this variable in the shell that executes the commands.
Related Topics:
FASTCopy
FASTLogic
Back to FAQ Index
|