Skip to main content
List of Aria Automation Orchestrator System Properties

System Properties in Orchestrator can be modified through Control Center, impacting system behavior. Follow steps to add or modify properties.




System Properties are special attributes that give users the ability to change Orchestrator internal system behavior directly by modifying\adding those properties from the Control Centre. These properties are basically part of a configuration file in Orchestrator. In this post, we will some of the important system properties that can help you to enhance your Orchestrator experience.

Process of adding these properties will be same as mentioned below. You don’t really have to add them until needed.


List of System Properties


UsageDescriptionKeyValue (example)
Number of concurrent running policies
The number of policies that run simultaneously
com.vmware.o11n.policy.executor_queue_size300
OGNL ValidatorThis property enables the OGNL expression evaluation inside Orchestratorcom.vmware.o11n.forms.evalognl-validator.enabledfalse
Set the number of vAPI MetamodelsThis property will set the number of the vAPI metamodels that can be added from Orchestrator vAPI Plug-in. Adding more that 20 may use excessive memory and cause instabilityvapi.metamodels.count20 (default)
Enable safe modeIf safe mode is enabled, all running workflows are canceled and are not resumed on the next Orchestrator node start.ch.dunes.safe-modefalse
Number of concurrent running workflowsThe number of workflows that run simultaneously.com.vmware.vco.workflow-engine.executors-count300
Maximum amount of running workflows in the queueThe number of workflow run requests that the Orchestrator server accepts before becoming unavailable.com.vmware.vco.workflow-engine.executors-max-queue-size10000
Maximum number of preserved runs per workflowThe maximum number of finished workflow runs that are kept as history per workflow. If the number is exceeded, the oldest workflow runs are deleted.ch.dunes.task.max-workflow-tokens100
Log events expiration daysThe number of days that log events are kept in the database before they are purged.com.vmware.o11n.log-events-expiration-days15
Set JavaScript Access to Java ClassesAllow the JavaScript engine full access to the Java virtual machine (JVM) com.vmware.scripting.rhino-class-shutter-filevco/usr/lib/vco/your_configuration_file_subdirectory
Adding a JDBC Connector for the vRealize Orchestrator SQL Plug-InProvides the path to the JDBC connectoro11n.plugin.SQL.classpath/var/run/vco/plugins/SQL/lib/your_mysql_connector.jar
Set Custom Timeout PropertyThe number of milliseconds Orchestrator will wait for the response from vCentercom.vmware.vmo.plugin.vi4.waitUpdatesTimeout30000
Access to Operating System Commands for Workflows and ActionsGrant permission to use the Command class com.vmware.js.allow-local-processtrue
Scheduled Task and Policy Authentication Token RenewalTo make sure that the scheduled workflows or policies in the Orchestrator deployment continue running even after eight hourscom.vmware.o11n.auth.csp.renewTokenstrue
Enables Basic Authenticationenables basic authentication in Orchestrator for Multi-Node plugin and REST API.com.vmware.o11n.sso.basic-authentication.enabledtrue
Purge workflow tokens at set intervalThe cron syntax to purge/delete workflow tokens automatically, changes the frequency of purgingcom.vmware.o11n.purge.execution.cron0 0/5 * * * ?
Enable Workflow Profiler in the vRealize Orchestrator ClientEnables profiler service to gather useful metric data about your workflow runscom.vmware.vro.extensions.profiler.enabledtrue
Enable Profiler for Every Workflow RunAfter you enable the Profile all workflow runs option, Workflow Profiler will generate statistics for every workflow runcom.vmware.o11n.extensions.profiler.profile-all-workflow-runstrue
Enable Profiler for Scripting APIShould the profiler record metrics for scripting API callscom.vmware.o11n.extensions.profiler.record-scriptingtrue
Enable Profiler for Action RunsShould the profiler record metrics for standalone action runscom.vmware.o11n.extensions.profiler.record-action-runstrue
Enable TokenReplayenables tokenreplay service by setting it to truecom.vmware.vro.extensions.tokenreplay.enabledtrue
Record token replay for all workflow runsAfter you enable the TokenReplay, it will record for every workflow runcom.vmware.o11n.extensions.tokenreplay.record-all-workflow-runstrue
Record scripting API callsit will record for every Scripting API callcom.vmware.o11n.extensions.tokenreplay.recordScriptingtrue


Procedure to add in Orchestrator

  1. Log in to Control Center as root.
  2. Click System Properties.
  3. Click New.
  4. In the Key text box, enter property.name (for eg. com.vmware.o11n.auth.csp.renewTokens).
  5. In the Value text box, enter value (for eg. true).
  6. In the Description text box, enter a description for the system property.
  7. Click Add.
  8. Click Save changes from the pop-up menu. A message indicates that you have saved successfully.
  9. Wait for the vRealize Orchestrator server to restart.

Comments

Popular posts from this blog

  Issue with Aria Automation Custom form Multi Value Picker and Data Grid https://knowledge.broadcom.com/external/article?articleNumber=345960 Products VMware Aria Suite Issue/Introduction Symptoms: Getting  error " Expected Type String but was Object ", w hen trying to use Complex Types in MultiValue Picker on the Aria for Automation Custom Form. Environment VMware vRealize Automation 8.x Cause This issue has been identified where the problem appears when a single column Multi Value Picker or Data Grid is used. Resolution This is a known issue. There is a workaround.  Workaround: As a workaround, try adding one empty column in the Multivalue picker without filling the options. So we can add one more column without filling the value which will be hidden(there is a button in the designer page that will hide the column). This way the end user will receive the same view.  

57 Tips Every Admin Should Know

Active Directory 1. To quickly list all the groups in your domain, with members, run this command: dsquery group -limit 0 | dsget group -members –expand 2. To find all users whose accounts are set to have a non-expiring password, run this command: dsquery * domainroot -filter “(&(objectcategory=person)(objectclass=user)(lockoutTime=*))” -limit 0 3. To list all the FSMO role holders in your forest, run this command: netdom query fsmo 4. To refresh group policy settings, run this command: gpupdate 5. To check Active Directory replication on a domain controller, run this command: repadmin /replsummary 6. To force replication from a domain controller without having to go through to Active Directory Sites and Services, run this command: repadmin /syncall 7. To see what server authenticated you (or if you logged on with cached credentials) you can run either of these commands: set l echo %logonserver% 8. To see what account you are logged on as, run this command: ...
  The Guardrails of Automation VMware Cloud Foundation (VCF) 9.0 has redefined private cloud automation. With full-stack automation powered by Ansible and orchestrated through vRealize Orchestrator (vRO), and version-controlled deployments driven by GitOps and CI/CD pipelines, teams can build infrastructure faster than ever. But automation without guardrails is a recipe for risk Enter RBAC and policy enforcement. This third and final installment in our automation series focuses on how to secure and govern multi-tenant environments in VCF 9.0 with role-based access control (RBAC) and layered identity management. VCF’s IAM Foundation VCF 9.x integrates tightly with enterprise identity providers, enabling organizations to define and assign roles using existing Active Directory (AD) groups. With its persona-based access model, administrators can enforce strict boundaries across compute, storage, and networking resources: Personas : Global Admin, Tenant Admin, Contributor, Viewer Projec...