I need to understand how configure search guard in Windows Computer…
I can’t see install_demo_configuration.cmd or install_demo_configuration.bat o install_demo_configuration.vbs file…
I’m not sure how many certificate should I créate in our internal Windows CA and how configure elastic and search guard…
Search Guard ships with an elastcsearch.yml file you can use as reference or guideline when manually configuring Search Guard. It’s located here:
/plugins/search-guard-5/sgconfig/elasticsearch.yml.example
A minimal configuration looks like:
searchguard.ssl.transport.keystore_filepath: path/to/keystore.jks
searchguard.ssl.transport.truststore_filepath: path/to/truststore.jks
searchguard.ssl.transport.enforce_hostname_verification: false
searchguard.ssl.http.enabled: true
searchguard.ssl.http.keystore_filepath: path/to/keystore.jks
searchguard.ssl.http.truststore_filepath: path/to/truststore.jks
searchguard.authcz.admin_dn:
searchguard.nodes_dn:
See also here: Redirecting…
Note that you can also use certificates in PEM format, the respective configuration keys can also be found in the docs above.
Note that the certificates, keystore and truststore files must be placed in a folder underneath the ES config directory and the paths in the config are relative.
···
On Monday, November 13, 2017 at 2:35:58 PM UTC+1, carlosdlra wrote:
I need to understand how configure search guard in Windows Computer…
I can’t see install_demo_configuration.cmd or install_demo_configuration.bat o install_demo_configuration.vbs file…
I’m not sure how many certificate should I créate in our internal Windows CA and how configure elastic and search guard…