Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added keystore config steps to Vulnerability detection and to Upgradi… #7235

Merged
merged 4 commits into from
Apr 26, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions source/upgrade-guide/upgrading-central-components.rst
Original file line number Diff line number Diff line change
Expand Up @@ -183,6 +183,13 @@ When upgrading a multi-node Wazuh manager cluster, run the upgrade in every node

.. include:: /_templates/installations/manager/configure_indexer_connection.rst

#. Save the Wazuh indexer username and password into the Wazuh manager keystore using the Wazuh-keystore tool.

.. code-block:: console

# /var/ossec/bin/wazuh-keystore -f indexer -k username -v <INDEXER_USERNAME>
# /var/ossec/bin/wazuh-keystore -f indexer -k username -v <INDEXER_PASSWORD>

#. Download the Wazuh module for Filebeat:

.. code-block:: console
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,13 @@ The following configuration block shows a configuration example for Syscollector
</synchronization>
</wodle>

Make sure you have saved the Wazuh indexer username and password into the Wazuh manager keystore using the Wazuh-keystore tool.
aritosteles marked this conversation as resolved.
Show resolved Hide resolved

.. code-block:: console

# /var/ossec/bin/wazuh-keystore -f indexer -k username -v <INDEXER_USERNAME>
aritosteles marked this conversation as resolved.
Show resolved Hide resolved
# /var/ossec/bin/wazuh-keystore -f indexer -k username -v <INDEXER_PASSWORD>
aritosteles marked this conversation as resolved.
Show resolved Hide resolved

The Vulnerability Detection module generates logs in the Wazuh server that trigger alerts. Every alert contains the following fields:

- **CVE**: The Common Vulnerabilities and Exposures identifier for the corresponding vulnerability.
Expand Down
Loading