Common ErrorsΒΆ

This list contains some common errors we have encountered over time. If you can't find your answer here, please contact support@robusta.dev or go to our slack channel.

command not found: robusta (Robusta CLI is not in path)
  1. Determine where the Robusta-cli binary file is located

find / -regex '.*/bin/robusta' 2>/dev/null
  1. Add the found path .../bin/ (E.g /opt/homebrew/bin/) to the user path directories.

  • Find your shell config file ( ~/.profile or ~/.bash_profile or ~/.zshrc etc...)

  • Append the following line to the shell config file:

export PATH="$PATH:<new-path>"
  1. Reopen the terminal or run:

source <your-shell-config-file>

Note

another solution is to run a command (e.g gen-config) directly with python: python3 -m robusta.cli.main gen-config

CLI SSL certificate issue

This error may suggest a python certificate package is missing in your system. Try running the script located at: /Applications/Python 3.9/Install Certificates.command

For more info see: https://stackoverflow.com/questions/52805115/certificate-verify-failed-unable-to-get-local-issuer-certificate