We upgrade our licensed Orchestrator to New Version and because of another situation, we changed Orchestrator Server and of course change its url.
But in new Orchestrator our robots allways look like Unresponsive. When we go to robot server and make it Disconnect-Connect; then its situation has been Avalilable. But after a few minutes, its gonna be Unresponsive again. How should we solve it?
And also everytime we try to connect our licensed Orchestrator Url, it gives not security error. How may we solve it? Is there anyone who know that?
Hi
We can get the license code from your orchestrator page itself
In the top right corner of the orchestrator page click on your name icon
There click on license tab and there we will be the license code
To get the device Iād we can get that from studio and in help session
We noticed and issue where the UiPath dashboard would show robots were unresponsive and no transaction statistics were returned. However, robots were available and continued to run scheduled jobs and permit net jobs to be assigned to them. We noticed that when you started a job, the dashboard would show the robot ābusyā and āavailableā, when the robotās work was done. But the robot would eventually show āunresponsiveā on the dashboard a short time later.
What we determined was that certain CRON jobs that updated the dashboard from robot heartbeats hadnāt been fully migrated during our upgrade. I suspect it was because the web app was not stopped during he update causes certain operations to time outā¦ Anyways, we were able to resolve the issue with the following actions:
Connect to the UiPath application database and run this query:
SELECT * FROM quartz.QRTZ_TRIGGERS
Look for rows where the TRIGGER_GROUP column has a value of ORCHESTRATOR_INTERNAL. If the TRIGGER_STATE column has a value of āERRORā you can try this fix:
!!! - WARNING YOU DO THIS AT YOUR OWN RISK - !!!
Update the rows where the the TRIGGER_STATE is āERRORā to āWAITINGā.
Next, edit the UiPath Orchestratorās web.config.
Note: this will case the orchestrator application to reset. Also, the SQL login used in the orchestratorās web.config must have enough permission to read the Master database AND make schema changes to the UiPath database.
Locate the web.config element:
<add key="Database.EnableAutomaticMigrations" value="false" />
Change the element to:
<add key="Database.EnableAutomaticMigrations" value="true" />
Save the web.config and restart the web application or app service if in Azure.
Later, after you are satisfied the dashboard and robots statuses are as they should be, you can set the DatabaseMigrations value back to false.