...
- You will find an example in ./user_bin/jobscheduler_environment_variables.(sh|cmd)-example.
- Rename this file to ./user_bin/jobscheduler_environment_variables.(sh|cmd) to make it effective.
- For Unix make sure that ./user_bin/jobscheduler_environment_variables.sh is readable and executable.
- Edit ./user_bin/jobscheduler_environment_variables.(sh|cmd) if you always want to start the JobScheduler with additional environment variables. If you want to start the JobScheduler Windows service with the
-env
option then a reinstall is required (see below).
...
Code Block |
---|
... # unix export hello="world" export PERL5LIB=`perl -e 'print join ":", @INC'` export tmpTMP="${SCHEDULER_DATA}/tmp" ... |
...