Hi,
In the beginning of the command, the ./ is used, meaning that is trying to unzip a tar file in the directory you are currently in.
You can see in the guide that it is always using the same path, it is usually the home directory when becoming root:
- Run ./wazuh-certs-tool.sh
to create the certificates. For a multi-node cluster, these
certificates need to be later deployed to all Wazuh instances in your
cluster.
tar -cvf ./wazuh-certificates.tar -C ./wazuh-certificates/ .
bash ./wazuh-certs-tool.sh -A
rm -rf ./wazuh-certificates
Copy the wazuh-certificates.tar file to all the nodes, including the Wazuh indexer, Wazuh server, and Wazuh dashboard nodes. This can be done by using the scp utility.
Useful commands:
The pwd command writes to standard output the full path name of your current directory
ls -a will list all files including hidden files (files with names beginning with a dot) and with
-l gives a long listing of all files.
I also recommend downloading the OVA for faster testing of the app if that is your intention or using the assistant as it takes care of many steps for you,
Regards.