You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Wazuh mailing list
Hi,
When searching ip of local machine,apache2 index.html is showing instead of wazuh web interface .
How to view wazuh web interface by searching local machine ip?
David Correa Rodriguez
unread,
Mar 1, 2023, 3:55:34 AM3/1/23
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Wazuh mailing list
Hello.
This is happening because you have two services that are in port 443 (Apache2 and Wazuh dashboard). In this case, you have two alternatives depending on what are your needs:
If you don't want to use Apache2, just stop and disable it. If you have systemd, use the commands sudo systemctl stop apache2 to stop the service and sudo systemctl disable apache2 to disable it (it won't be run automatically at the start of the machine).
If you want to use Apache2 then you must modify the port that the Wazuh dashboard uses. To perform this, stop the Wazuh dashboard with sudo systemctl stop wazuh-dashboard, edit the /etc/wazuh-dashboard/opensearch_dashboard.yml file, specifically the line server.port: 443 and change this value to another one, for example 442. Then, start the Wazuh dashboard with sudo systemctl start wazuh-dashboard. To see the web interface, you have to specify the port when navigating to the URL, like https://<localhost>:<port>. If you used 442 port then https://<localhost>:442