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
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:
-
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
-
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
-
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. -
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
-
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.