skip to Main Content

I installed the eksctl with the help of this https://docs.aws.amazon.com/eks/latest/userguide/getting-started-eksctl.html.
Commands I executed:-

curl –silent –location "https://github.com/weaveworks/eksctl/releases/download/0.26.0-rc.1/eksctl_Linux_amd64.tar.gz" | tar xz -C /tmp

sudo mv /tmp/eksctl /usr/local/bin

Output:-

[shivani@vmunix ~]$ eksctl version

0.26.0-rc.1

[root@vmunix ~]# eksctl version

bash: eksctl: command not found…

Please help me to resolve this issue.

2

Answers


  1. In case your issue is not resolved ,set the path as below :
    Assuming eksctl binary is in /usr/local/bin:

    export PATH=$PATH:/usr/local/bin/
    
    Login or Signup to reply.
  2. It is working for me, we need to set a variable on the .bash_profile file

    [root@ ~]# eksctl version
    0.126.0

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search