Is there a way to start the Orchestrator and prevent it from automatically recovering a running process we suspect is causing the application to fail and shut down?
We have a problem with a long-running process that we suspect is causing the Orchestrator to shut down. On a restart the Orchestrator tries to recover the process, and it shuts down again.
Process Automation 4.3.x
In the OasisConfig.properties file located in /CA/PAM/server/c2o/.config, scroll to the bottom of the file and add the line:
pam.disable.bootup.recovery=true
Restart the orchestrator. You should now be able to locate the offending instance and abort it.
After the instance has been handled, make sure to either comment out the line in OasisConfig.properties so that it reads as:
#pam.disable.bootup.recovery=true
or change the value to false as:
pam.disable.bootup.recovery=false
or remove the line completely, and restart the orchestrator again for this to take affect.
This should only be done if you know that you have an issue with a specific instance or instances and not as a regular troubleshooting solution.