Hi Dhruvin Shah,
The Curl error (23) is likely due to insufficient disk space or inode exhaustion, common in Wazuh installations on systems with limited storage. Start by verifying disk space and inodes, clearing the dnf cache, and disabling SELinux temporarily. The Wazuh dashboard requires 267 MB for the download and 884 MB for installation.
The quickstart guide recommends at least 50 GB for an all-in-one deployment to accommodate the indexer, manager, dashboard, and logs.
Run this command and share the output: df -h
Requirements
A full inode table can prevent file creation even if disk space is available. df -i
RHEL 9 uses SELinux in enforcing mode by default, which may restrict dnf operations.
Check SELinux status:
sestatus
If it says Current mode: enforcing, temporarily set to permissive:
sudo setenforce 0
Retry the installation:
sudo bash wazuh-install.sh -a
Clear dnf cache:
sudo dnf clean all
If the issue persists, please share the install log, if it's available, to check further. /var/log/wazuh-install.log
Let me know the update on this.
Hi Dhruvin Shah, The Curl error (23) is likely due to insufficient disk space or inode exhaustion, common in Wazuh installations on systems with limited storage. Start by verifying disk space and inodes, clearing the dnf cache, and disabling SELinux temporarily. The Wazuh dashboard requires 267 MB for the download and 884 MB for installation. The quickstart guide recommends at least 50 GB for an all-in-one deployment to accommodate the indexer, manager, dashboard, and logs. Run this command and share the output: df -h Requirements A full inode table can prevent file creation even if disk space is available. df -i
RHEL 9 uses SELinux in enforcing mode by default, which may restrict dnf operations.
Check SELinux status:
sestatus
If it says Current mode: enforcing, temporarily set to permissive:
sudo setenforce 0
Retry the installation:
sudo bash wazuh-install.sh -a Clear dnf cache:
sudo dnf clean all If the issue persists, please share install log, if it's available to check further. /var/log/wazuh-install.logLet me know the update on this.