Troubles on ubuntu with connection to hive

help please. problems on ubuntu with connection to hive

Keep trying. Had the same issue.

I’ve been trying for 5 days now, but all in vain


I am facing issues here please and I want to run it on a vps

The issue you’re encountering is likely due to the aios-cli binary not being properly added to your system’s PATH, or the changes to the PATH not being applied in your current shell session. Here are a few steps you can take to troubleshoot and resolve the issue:

  1. Source the .bashrc file: The installation script mentioned that it added the binary to your PATH in the .bashrc file. To apply these changes, you need to source the .bashrc file. Run the following command:

    source /root/.bashrc
    
  2. Verify the PATH: Ensure that the directory containing the aios-cli binary is included in your PATH. You can check this by running:

    echo $PATH
    

    Look for /root/.aios in the output. If it’s not there, you can add it manually by editing your .bashrc file:

    export PATH=$PATH:/root/.aios
    

    Then, source the .bashrc file again:

    source /root/.bashrc
    
  3. Check the binary location: Verify that the aios-cli binary is indeed located in /root/.aios. You can do this by running:

    ls /root/.aios
    

    Ensure that aios-cli is listed in the output.

  4. Permissions: Ensure that the aios-cli binary has the correct permissions to be executed. You can set the executable permission by running:

    chmod +x /root/.aios/aios-cli
    
  5. Restart the shell: If the above steps don’t work, try restarting your shell session or opening a new terminal window.

If you follow these steps and the issue persists, there may be a problem with the installation script or the binary itself. In that case, you might want to check the installation instructions or reach out to the support or community for the aios-cli tool.