Hi
Gokul,
Please check the resource usage of your environment indexer and dashboard instance.
df -h
free -h
top
Then share me the output of those commands.
Check Wazuh Indexer Status
Verify that the Wazuh indexer is running and healthy:
sudo systemctl status wazuh-indexerIf it’s not running, start it:
sudo systemctl restart wazuh-indexerCheck the indexer logs for errors:
cat /var/log/wazuh-indexer/wazuh-cluster.log | grep -i -E "error|warn"Test Connectivity Between Dashboard and Indexer
Since both services are on Node 1, test connectivity to the indexer (default port 9200):
curl -k -u <INDEXER_USERNAME>:<INDEXER_PASSWORD> https://localhost:9200Replace <INDEXER_USERNAME> and <INDEXER_PASSWORD> with your credentials (e.g., admin and its password). If this fails or times out, there’s a connectivity or indexer issue.
Review Wazuh Dashboard Configuration
Open the dashboard configuration file:
sudo nano /etc/wazuh-dashboard/opensearch_dashboards.ymlEnsure opensearch.hosts points to the correct indexer address (e.g.,
https://IndexerIP:9200 since they’re on the same node) and that SSL settings (certificates, verification mode) are correct.
Example:
opensearch.hosts: ["https://indexerIP:9200"]
opensearch.ssl.verificationMode: certificate
opensearch.username: "kibanaserver"
opensearch.password: "<your_password>"
Check Dashboard Logs for More Details
Look at the systemd logs for additional context:
journalctl -u wazuh-dashboard
cat /usr/share/wazuh-dashboard/data/wazuh/logs/wazuhapp.logLet me know the update on this.
Regards,
Hasitha Upekshitha