Automation Suite
2023.10
false
Banner background image
Automation Suite on Linux Installation Guide
Last updated Apr 19, 2024

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



Solution

  1. Run below 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 deploymentsexport KUBECONFIG=/etc/rancher/rke2/rke2.yaml
    export PATH=$PATH:/var/lib/rancher/rke2/bin
    
    kubectl -n uipath rollout restart deployments
  2. Wait for the above command to succeed and then run below 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 above command is finished execution, you should able to access Automation Suite and Orchestrator

  • Description
  • Error
  • Solution

Was this page helpful?

Get The Help You Need
Learning RPA - Automation Courses
UiPath Community Forum
Uipath Logo White
Trust and Security
© 2005-2024 UiPath. All rights reserved.