Table of Contents | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|
|
UserBinStartscript|swtcomponenh1. JID|swtcomponentfullInformation Dashboard (JID)|swtcomponentstartscript=dashboard
The JobScheduler Information Dashboard (JID) starts with the script:
- $SCHEDULER_HOME/bin/dashboard.sh (Unix)
- $SCHEDULER_HOME\bin\dashboard.cmd (Windows)
This script should not be changed because the changes after a JobScheduler Update may have been lost.
If environment variables (e.g. $JAVA_HOME) need to be adjusted, then please put them in a file:
- $SCHEDULER_HOME/user_bin/dashboard_environment_variables.sh (Unix)
- $SCHEDULER_HOME\user_bin\dashboard_environment_variables.cmd (Windows)
You can use the file:
- $SCHEDULER_HOME/user_bin/dashboard_environment_variables.sh-example (Unix)
- $SCHEDULER_HOME\user_bin\dashboard_environment_variables.cmd-example (Windows)
as a template.
$SCHEDULER_HOME/user_bin/dashboard_environment_variables.sh must be executable on Unix.
Example (Unix) - Set Java memory usage:
Code Block |
---|
#!/bin/sh
# ...
JAVA_OPTIONS="-Xms512m -Xmx512m" |
Example (Unix) - Enabling Tabs:
Code Block |
---|
set ENABLE_JOE=true
set ENABLE_JOC=true
set ENABLE_EVENTS=true |