Question: 842


Orchestration CLI configured for multiple environments in HCL Workload Automation 10.2. To list available contexts and switch to "test", commands? (Select two)


  1. ocli switch test

  2. ocli config contexts

  3. ocli login test

  4. ocli context list

  5. ocli context use test


Answer: D,E


Explanation: ocli context list displays configured contexts from config.yaml. ocli context use test activates the test environment for subsequent commands.


Question: 843


HCL HWA 10.2 ephemeral agent installation in OpenShift 4.12 fails pod startup: "Cannot create /opt/hcl/twa/TWS_data_dir because parent directory does not exist". DaemonSet uses emptyDir volume. Correct volumeMount configuration?


  1. configMap: name: tws-config with data directory structure

  2. volumeMounts: - mountPath: /opt/hcl/twa/TWS_data_dir name: tws-data emptyDir: {}

  3. hostPath: path: /var/lib/tws-data type: DirectoryOrCreate

  4. persistentVolumeClaim: claimName: tws-ephemeral-pvc


Answer: B


Explanation: Ephemeral agents require emptyDir for TWS_data_dir volatile storage. DaemonSet spec.volumes: - name: tws-data emptyDir: {} and volumeMounts: - mountPath:

/opt/hcl/twa/TWS_data_dir name: tws-data ensures pod creates data directory on startup. Pod restarts lose plan data intentionally.


Question: 844


A scripting team wants to run automated maintenance jobs through the HCL Workload Automation command line without interactive prompts and with minimal exposure of credentials. They plan to use a dedicated technical user and schedule scripts from a secure operations server. How does the command-line client assemble the full set of connection parameters when some values are provided as command options and others are stored locally?


  1. It first reads parameters supplied to the command and then fills any missing ones from the localopts configuration on the same computer

  2. It requires all parameters, including username and password, to be specified on the command line for non-interactive use

  3. It always prioritizes the values found in localopts over any parameters passed on the command line

  4. It ignores local configuration when a technical user is used and relies only on environment variables


Answer: A


Explanation: The HCL Workload Automation command-line client constructs its connection configuration by first checking for values supplied as explicit parameters to the command. For any required parameters still missing, such as hostname, port, or other connection details, the client consults the localopts file or related local properties on the same computer, allowing a mix of command-line and local configuration. This behavior enables scripts to override specific parameters where necessary while relying on centrally maintained defaults, avoiding the need to repeat full connection details in each script.


Question: 845


Scenario: Large-scale tracing required for broker performance issues. What impacts maximum trace levels in HCL Workload Automation 10.2?


  1. Significant disk usage growth in stdlist/logs

  2. Traces only in memory

  3. Requires broker restart to apply

  4. Performance degradation on broker server

  5. Automatic trace disable after timeout


Answer: A,C,D


Explanation: Enabling full traces (e.g., tws_all) substantially increases log volume and CPU/memory usage, impacting performance, and typically requires restarting the application server or broker processes for activation.


Question: 846


Scenario: A fault-tolerant agent in HCL Workload Automation 10.2 linked to an MDM with custom CA-signed certificates fails handshake during linkage after MDM certificate replacement. Which steps reset and re-establish trust without full reinstallation? (Select three)


  1. Update localopts with new verify_cn_string matching SAN

  2. Unlink the agent using conman unlink;force

  3. Manually delete TWSClientTrustFile.jks and restart agent

  4. Run AgentCertificateDownloader utility with updated --tdwbhostname and --tdwbport

  5. Relink using conman link with SSL parameters


Answer: B,D


Explanation: Unlink the agent using conman unlink;force clears existing linkage state. Run AgentCertificateDownloader utility with updated --tdwbhostname and --tdwbport fetches and installs the new server certificate chain automatically.


Question: 847


To restrict access to sensitive workload definitions in the Dynamic Workload Console (DWC) for HCL Workload Automation 10.2, an administrator wants to implement role- based access control (RBAC) limiting users to view and modify only specific job streams in a particular domain. Which advanced settings in the security file must be configured precisely? (Select two)


  1. Use the FOLDER keyword in conjunction with USEROBJ and DOMAIN specifications

  2. Define object access with CPU=* and ACCESS=DISPLAY,MODIFY for restricted folders

  3. Assign SECURITY role with SUBMIT access limited by JOBSTREAMNAME prefix matching

  4. Restrict PLAN access with TIME windows and FROM/TO date specifications

  5. Implement APPLICATION access restrictions tied to engine connection names


Answer: A,E


Explanation: The FOLDER keyword in conjunction with USEROBJ and DOMAIN specifications allows granular control over access to objects within specific database folders, enabling restriction to particular job streams or domains. Implementing APPLICATION access restrictions tied to engine connection names limits users to specific distributed engines or domains when multiple connections are defined in the DWC, providing targeted access control beyond global roles.


Question: 848


In a high-availability setup with a backup master domain manager, the primary database password is updated. Which components require updates to the connection parameters to avoid plan switch failures? (Select All that Apply)


  1. Primary master domain manager application server datasource

  2. Dynamic Workload Console engine connections

  3. All dynamic agents in the network

  4. Backup master domain manager Windows services


Answer: A,B,D


Explanation: Changing the database password requires updating the datasource file on the primary master domain manager and restarting its application server, updating Windows services on the backup master if applicable, and refreshing engine connection parameters in the Dynamic Workload Console to allow monitoring and management. Dynamic agents do not directly connect to the database, so no changes are needed there.


Question: 849


HCL HWA 10.2 planman create fails mid-production cycle with "Symphony size exceeds 2GB limit" during 18000 job stream finalization across 200 workstations. Current Symphony 1.8GB. DWC shows "Plan creation failed". What production cycle extension enables completion?


A. planman extend 72h /FORCE; planman create /CONTINUE

B. Increase filesystem 10GB; planman create /LARGE

  1. conman "stopsymphony"; rm Symphony; planman create

  2. planman resyncplan all; create 24h increments


Answer: A


Explanation: planman extend 72h /FORCE creates breathing room for 2GB Symphony limit; /CONTINUE resumes 18000 stream finalization across 200 workstations without data loss. Symphony stop destroys running production versus filesystem expansion requiring downtime maintaining cycle continuity.


Question: 850


Scenario: Combining DB2 configuration with templates in HCL Workload Automation 10.2, an administrator needs HADR support. Which file is customized from template?


  1. Variable table for connection strings

  2. JobManager.ini for agents

  3. Security file for user grants

  4. localopts for DB2 port

  5. Datasource configuration XML in overrides

Answer: E


Explanation: Datasource templates include placeholders for HADR client reroute parameters; copying to overrides and adding alternate server details enables high-availability database connections for both master and reporting without full reconfiguration.


Question: 851


Scenario: High volume of messages flooding stdlist on MDM in HCL Workload Automation 10.2. To increase message level temporarily for batchman diagnostics and redirect to file, conman commands? (Select two)


  1. console off

  2. showmsg batchman

  3. console level=10;to /tmp/batchman.log

  4. console level=5

  5. optman msglvl=10


Answer: A,C


Explanation: console level=10;to /tmp/batchman.log elevates verbosity and redirects detailed messages to a log file for analysis. console off terminates redirection after capturing sufficient data.


Question: 852


Scenario: After a plan extension in HCL Workload Automation 10.2, several event rules remain inactive because they were saved as draft during testing. You need to deploy only the finalized non-draft rules without resetting active sequential rule states. Which planman command and options are required? (Select two)


  1. planman deploy -scratch

  2. planman deploy -noreset

  3. planman deploy

  4. planman deploy -reset

  5. planman deploy -force


Answer: B,C


Explanation: planman deploy selects and deploys all non-draft event rules from the database to agents. planman deploy -noreset ensures ongoing triggered sequential rules maintain their state, avoiding loss of tracked events.


Question: 853


HCL HWA 10.2 Switch Event Processor high availability configuration fails leader election: conman showswitchep shows LEADER_NONE on backup MDM. What command forces SwitchEP quorum?


  1. conman startswitchep @backup-mdm

  2. conman switchep -elect-leader -quorum 2

  3. SwitchEP HA auto-configures

  4. optman mod _SWITCHEP_HA_QUORUM=2; optman mod _SWITCHEP_LEADER_ELECTION=YES


Answer: D


Explanation: HA SwitchEP requires explicit quorum. optman mod _SWITCHEP_HA_QUORUM=2 configures 2-node majority, optman mod

_SWITCHEP_LEADER_ELECTION=YES enables Raft consensus. Primary SwitchEP elected LEADER, backup FOLLOWER synchronizes event processing.


Question: 854


Scenario: Performance issues occur when connecting the Dynamic Workload Console to an HCL Workload Automation for Z engine due to slow response times. Which advanced setting can be adjusted to increase the timeout value?


  1. zConnectionTimeout in localopts

  2. planQueryTimeout in global options

  3. engineReadWriteTimeout in TdwcGlobalSettings.xml

  4. zOSEngineTimeout in TdwcGlobalSettings.xml

  5. conmanTimeout in optman settings


Answer: C


Explanation: The advanced settings file TdwcGlobalSettings.xml includes parameters to customize timeouts for specific engine types, including the read/write timeout for HCL Workload Automation for Z engines. Increasing this value helps in environments with high latency or large data transfers when querying or modifying plan objects.


Question: 855

For managing dynamic scheduling in HCL Workload Automation 10.2, the dynamic workload broker server is embedded in which components? (Select two)


  1. Fault-tolerant agents

  2. Z-centric endpoints

  3. Standalone dynamic agents

  4. Dynamic Domain Manager

  5. Master Domain Manager Liberty profile


Answer: D,E


Explanation: Master Domain Manager Liberty profile hosts the central broker for dynamic job dispatch. Dynamic Domain Manager provides hierarchical broker support for large-scale dynamic environments.


Question: 856


Scenario: Uninstalling a backup MDM in 10.2 that shares the database with the primary. What must not be done during uninstall?


  1. Drop database tables

  2. Stop processes on backup

  3. Remove TWA_home directory

  4. Unregister from Liberty repo

  5. Delete local properties files


Answer: A


Explanation: The database is shared, so dropping tables would destroy the primary's data. Uninstall removes local files and instance registration but preserves the remote/shared database.


Question: 857


Scenario: Deploying HCL Workload Automation 10.2 server with Docker. Which registry must be accessed for official container images?


  1. Docker Hub public

  2. HCL Entitled Registry (hclcr.io)

  3. AWS ECR public

  4. Red Hat Quay

  5. GitHub Container Registry


Answer: B


Explanation: Container images for deploying with Docker, including server, console, and agents, are hosted in the HCL Entitled Registry (hclcr.io), requiring login with entitled credentials provided by HCL sales representatives.


Question: 858


To configure LDAP authentication using federated repositories in HCL Workload Automation 10.2 Liberty profile for both MDM and DWC, which XML elements in the server.xml must be precisely defined to integrate Microsoft Active Directory while retaining the local file registry as fallback? (Select two)


  1. <basicRegistry id="basic" realm="basicRealm"/>

  2. <feature>ldapRegistry-3.0</feature> and <feature>federatedRegistry-1.0</feature>

  3. <ldapRegistry id="ldap" realm="myRealm" host="ad.host.com" port="389" baseDN="dc=company,dc=com" bindDN="cn=bind,cn=users,dc=company,dc=com" bindPassword="{xor}encoded"/>

  4. <variable name="admin.group.name" value="TWSAdmins"/>

  5. <federatedRepository id="ldapFed" primaryRealm="myRealm"/>


Answer: C,E


Explanation: <federatedRepository id="ldapFed" primaryRealm="myRealm"/> establishes the federation combining multiple repositories under a single realm. <ldapRegistry id="ldap" realm="myRealm" host="ad.host.com" port="389" baseDN="dc=company,dc=com" bindDN="cn=bind,cn=users,dc=company,dc=com" bindPassword="

{xor}encoded"/> defines the Active Directory connection details, search base, and secure bind credentials for user/group lookups.


Question: 859


An organization uses HCL Workload Automation 10.2 with DB2, and the support team requests switching from the default type 4 JDBC driver to a type 2 JDBC driver for troubleshooting performance issues. The database server and Dynamic Workload Console remain unchanged. The administrator needs to make this change with minimal impact, ensuring that the engine loads the new driver on the next restart. Which configuration update is required to accomplish this?


  1. Update db.driver.path in the engine properties to point to the type 2 JDBC driver libraries provided for DB2

  2. Update db.user to a special performance user required by the type 2 driver

  3. Update db.databaseName in the engine properties to indicate the driver type and keep db.driver.path unchanged

  4. Update db.sslConnection to true so that the engine automatically switches to the type 2 driver


Answer: A


Explanation: In HCL Workload Automation, the db.driver.path property specifies the filesystem path to the JDBC driver libraries that the engine uses to connect to the database. Support may request switching between type 4 and type 2 JDBC drivers for DB2 or Oracle, and this is done by adjusting the db.driver.path to reference the desired driver implementation while keeping the rest of the database connection parameters consistent. Because driver type is not inferred from the database name, user, or SSL flag, updating only db.driver.path ensures that the engine loads the new driver implementation at the next startup without further structural changes to the configuration.


Question: 860


Troubleshooting HCL HWA 10.2 shows batchman trace+audit correlation: TWS_home/trace/batchman.*.trc "Intercom.msg write blocked" timestamp matches auditbox.msg 4200 "conman STOP batchman" bursts. CP=21h18m stalled. What root cause mitigation prevents recurrence?


  1. planman extend /NOCONMAN

  2. localopts enIntercomThrottling=YES;maxConmanBurst=1800/min;auditbox.msg 75M

  3. conman alias throttle; batchman priority

  4. globalopts CONMAN_THROTTLE=1200/min


Answer: B


Explanation: enIntercomThrottling=YES;maxConmanBurst=1800/min rate-limits 4200 STOP commands preventing Intercom.msg blocking and CP=21h18m stalls; auditbox.msg 75M capacity handles burst metadata vs alias lacking enforcement or globalopts missing workstation granularity maintaining production stability during conman storms.


Question: 861


HCL HWA 10.2 configuring authentication with JWT bearer tokens fails validation: "Signature verification failed". DWC server.xml jwtLoginModule configured but public key mismatch. Required jwtLoginModule configuration?


  1. <jwtLoginModule id="jwtAuth" tokenHeader="Authorization" tokenPrefix="Bearer " signatureAlgorithm="RS256" publicKeyAlias="jwks-key"/>

  2. Liberty extracts public key from token header automatically

  3. Download IdP JWKS endpoint to Liberty truststore

  4. JWT signature validation optional for internal tokens


Answer: A


Explanation: Liberty JWT login module validates token signature against keystore alias. server.xml: <jwtLoginModule id="jwtBearer" tokenHeader="Bearer" signatureAlgorithm="RS256" publicKeyAlias="corp-jwt-key" issuer="https://keycloak.corp.com/realms/hwa"/> imports IdP public key via keytool -importcert -alias corp-jwt- key.


Question: 862


Scenario: To monitor all prompts in the plan and reply to critical ones selectively in batch mode conman in HCL Workload Automation 10.2? (Select two)


  1. tellop reply

  2. showprompts @;global

  3. console prompts

  4. listprompts

  5. reply promptselect=@#CRIT_*;answer=yes;noask


Answer: B,E


Explanation: showprompts @;global lists all outstanding prompts. reply promptselect=@#CRIT_*;answer=yes;noask replies to matched critical prompts without confirmation.


Question: 863


For server installation in HCL Workload Automation 10.2 without root privileges (introduced in recent updates), which components can now be installed by a regular user? (Select All that Apply)


  1. Dynamic Workload Console

  2. Backup master domain manager

  3. Master domain manager

  4. Z-centric agents

  5. Fault-tolerant agents


Answer: B,C,E


Explanation: Recent enhancements allow server installations, including master and backup master domain managers as well as fault-tolerant agents, to be performed using a regular user account without requiring root privileges, simplifying deployment in restricted environments.


Question: 864


Scenario: Dynamic agent jobs are not receiving updated variables from the master in HCL Workload Automation 10.2. Which process and communication path should be examined?


  1. Liberty broker to jobman via HTTPS

  2. Monman to event processor

  3. Mailman to jobman via local queue

  4. Batchman to netman

  5. Writer to Symphony


Answer: A


Explanation: Liberty broker to jobman via HTTPS handles direct job dispatch and parameter streaming for dynamic agents without traditional message files.