UiPath Documentation
automation-suite
2.2510
true
Automation Suite on Linux installation guide

Failure after certificate update

Known issue and resolution for Automation Suite or Orchestrator access failure following a certificate update in Automation Suite.

Description

This issue occurs when the certificate update step fails internally. You may not able to access Automation Suite or Orchestrator.

Error

The following image shows the error that appears when this issue occurs.

Solution

  1. Run the following commands from any of the server node:

    export KUBECONFIG=/etc/rancher/rke2/rke2.yaml
    export PATH=$PATH:/var/lib/rancher/rke2/bin
    
    kubectl -n uipath rollout restart deployments
    export KUBECONFIG=/etc/rancher/rke2/rke2.yaml
    export PATH=$PATH:/var/lib/rancher/rke2/bin
    
    kubectl -n uipath rollout restart deployments
    
  2. Wait for the previous command to succeed and then run the following command to verify the status of previous command.

    deployments=$(kubectl -n uipath get deployment -o name)
    for i in $deployments; 
    do 
    kubectl -n uipath rollout status "$i" -w --timeout=600s; 
    if [[ "$?" -ne 0 ]]; 
    then
        echo "$i deployment failed in namespace uipath."
    fi
    done
    echo "All deployments are succeeded in namespace uipath"
    deployments=$(kubectl -n uipath get deployment -o name)
    for i in $deployments; 
    do 
    kubectl -n uipath rollout status "$i" -w --timeout=600s; 
    if [[ "$?" -ne 0 ]]; 
    then
        echo "$i deployment failed in namespace uipath."
    fi
    done
    echo "All deployments are succeeded in namespace uipath"
    

Once the previous command has finished executing, you should able to access Automation Suite and Orchestrator.

  • Description
  • Error
  • Solution

Was this page helpful?

Connect

Need help? Support

Want to learn? UiPath Academy

Have questions? UiPath Forum

Stay updated