-
Notifications
You must be signed in to change notification settings - Fork 357
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixing alignment and improving sentences after review
- Loading branch information
Showing
2 changed files
with
29 additions
and
25 deletions.
There are no files selected for viewing
46 changes: 24 additions & 22 deletions
46
source/_templates/installations/manager/configure_indexer_connection.rst
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,33 @@ | ||
.. Copyright (C) 2015, Wazuh, Inc. | ||
By default, the host is set to localhost: ``<host>https://0.0.0.0:9200</host>``. Replace ``0.0.0.0`` with your Wazuh indexer node IP address or hostname. | ||
By default, the indexer settings have one host configured. It's set to localhost as highlighted below. Replace ``0.0.0.0`` with your Wazuh indexer node IP address or hostname. | ||
|
||
.. code-block:: xml | ||
:emphasize-lines: 4 | ||
<indexer> | ||
<enabled>yes</enabled> | ||
<hosts> | ||
<host>https://0.0.0.0:9200</host> | ||
</hosts> | ||
<ssl> | ||
<certificate_authorities> | ||
<ca>/etc/filebeat/certs/root-ca.pem</ca> | ||
</certificate_authorities> | ||
<certificate>/etc/filebeat/certs/filebeat.pem</certificate> | ||
<key>/etc/filebeat/certs/filebeat-key.pem</key> | ||
</ssl> | ||
</indexer> | ||
If you have more than one Wazuh indexer node, add all the required ``<host>`` entries. The vulnerability detector module will report to the first available node found and will switch to the next one in case of error. | ||
:emphasize-lines: 4 | ||
<indexer> | ||
<enabled>yes</enabled> | ||
<hosts> | ||
<host>https://0.0.0.0:9200</host> | ||
</hosts> | ||
<ssl> | ||
<certificate_authorities> | ||
<ca>/etc/filebeat/certs/root-ca.pem</ca> | ||
</certificate_authorities> | ||
<certificate>/etc/filebeat/certs/filebeat.pem</certificate> | ||
<key>/etc/filebeat/certs/filebeat-key.pem</key> | ||
</ssl> | ||
</indexer> | ||
If you have a Wazuh indexer cluster, add a ``<host>`` entry for each one of your nodes. For example, in a two-nodes configuration: | ||
|
||
.. code-block:: xml | ||
<hosts> | ||
<host>https://10.0.0.1:9200</host> | ||
<host>https://10.0.0.2:9200</host> | ||
</hosts> | ||
<hosts> | ||
<host>https://10.0.0.1:9200</host> | ||
<host>https://10.0.0.2:9200</host> | ||
</hosts> | ||
Vulnerability detection prioritizes reporting to the first node in the list. It switches to the next node in case it's not available. | ||
|
||
.. End of include file |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters