Installing the Wazuh dashboard using the assisted installation method

Install and configure the Wazuh dashboard on a 64-bit (x86_64/AMD64 or AARCH64/ARM64) architecture using the assisted installation method. Wazuh dashboard is a flexible and intuitive web interface for mining and visualizing security data.

Wazuh dashboard installation

  1. Download the Wazuh installation assistant. Skip this step if you installed Wazuh indexer on the same server and the Wazuh installation assistant is already in your working directory:

    # curl -sO https://packages-staging.xdrsiem.wazuh.info/pre-release/5.x/installation-assistant/wazuh-install-5.0.0-beta4.sh
    
  2. Run the Wazuh installation assistant with the option --wazuh-dashboard and the node name to install and configure the Wazuh dashboard. The node name must be the same one used in config.yml for the initial configuration, for example, dashboard:

    Note

    Make sure that a copy of wazuh-install-files.tar created during the Wazuh indexer installation is placed in your working directory.

    # bash wazuh-install-5.0.0-beta4.sh --wazuh-dashboard dashboard -id -d pre-release
    

    The default Wazuh web user interface port is 443, used by the Wazuh dashboard. You can change this port using the optional parameter -p <PORT_NUMBER> or --port <PORT_NUMBER>. Some recommended ports are 8443, 8444, 8080, 8888, and 9000.

    Once the Wazuh installation is completed, the output shows the access credentials and a message that confirms that the installation was successful. The default password is admin.

    INFO: --- Summary ---
    INFO: You can access the web interface https://<WAZUH_DASHBOARD_IP_ADDRESS>:443
       User: admin
       Password: <ADMIN_PASSWORD>
    
    INFO: Installation finished.
    

    You now have installed and configured Wazuh.

  3. After deployment, the web interface may take one to two minutes to become available while the Wazuh services finish initializing. Access the Wazuh web interface with your admin user credentials. This is the default administrator account for the Wazuh indexer and it allows you to access the Wazuh dashboard.

    • URL: https://<WAZUH_DASHBOARD_IP_ADDRESS>

    • Username: admin

    • Password: <ADMIN_PASSWORD>

    When you access the Wazuh dashboard for the first time, the browser shows a warning message stating that the certificate was not issued by a trusted authority. An exception can be added in the advanced options of the web browser. For increased security, the root-ca.pem file previously generated can be imported to the certificate manager of the browser instead.

Securing your Wazuh installation

You have now installed and configured all the Wazuh central components. We recommend changing the default credentials to protect your infrastructure from possible attacks.

Select your deployment type and follow the instructions to change the default passwords for both the Wazuh API and the Wazuh indexer users.

Wazuh indexer users are defined in /etc/wazuh-indexer/opensearch-security/internal_users.yml.

  1. Download the Wazuh passwords tool:

    # wget https://packages-staging.xdrsiem.wazuh.info/pre-release/5.x/installation-assistant/wazuh-passwords-tool-5.0.0-beta4.sh
    
  2. To change the password for a Wazuh indexer user, run the passwords tool with the -u option and indicate the new password with the -p option. The password must have a length between 8 and 64 characters and contain at least one upper case letter, one lower case letter, a number, and one of the following symbols: .*+?-.

    # bash wazuh-passwords-tool-5.0.0-beta4.sh -u <USER> -p <PASSWORD>
    

    Where <USER> is the name of the user whose password you want to change and <PASSWORD> is the new password. If <PASSWORD> is not specified, the tool will generate a random password.

    For example, to change the password of the admin user to Secr3tP4ssw*rd, run the following command:

    # bash wazuh-passwords-tool-5.0.0-beta4.sh -u admin -p Secr3tP4ssw*rd
    

    The command output looks similar to this:

    10/04/2026 13:40:45 INFO: Updating the internal users.
    10/04/2026 13:41:04 INFO: A backup of the internal users has been saved in the /etc/wazuh-indexer/internalusers-backup folder.
    10/04/2026 13:41:05 INFO: Generating password hash
    10/04/2026 13:42:28 WARNING: Password changed. Remember to update the password in the Wazuh dashboard and the Wazuh manager nodes if necessary, and restart the services.
    

Disable Wazuh updates

We recommend disabling the Wazuh package repositories after installing all components on this server to prevent accidental upgrades.

Execute the following command only after completing all installations:

# sed -i "s/^deb /#deb /" /etc/apt/sources.list.d/wazuh.list
# apt update

Next steps

All the Wazuh central components are successfully installed.

The Wazuh environment is now ready, and you can proceed with installing the Wazuh agent on the endpoints to be monitored. To perform this action, see the Wazuh agent section.