UiPath Documentation
automation-suite
2.2510
true
UiPath logo, featuring letters U and I in white

Automation Suite on Linux installation guide

Last updated Mar 26, 2026

Failure after certificate update

Description

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

Error

docs image

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