What is the command to confirm the SCHED_SCALE and DB_CONNECTION parameters if these parameters are not configured in the $AUTOUSER/autosys.{SHELL}.{HOSTNAME} files?
Workload Automation AE (AutoSys)
On Linux/UNIX:
1. Obtain the scheduler PID:
ps -ef | grep event_demon
ps -ef | grep as_server
2. List environment variables set for the current running event_demon process:
strings /proc/<pid>/task/<pid>/environ | grep SCHED_SCALE
strings /proc/<pid>/task/<pid>/environ | grep DB_CONNECTIONS
Note: Replace <PID> with the PID obtained from the ps command.