Transport client not working with sarchguard.

When asking questions, please provide the following information:

  • Search Guard and Elasticsearch version 6.0.0

  • Installed and used enterprise modules, if any No

  • JVM version and operating system version 1.7

  • Search Guard configuration files

  • Elasticsearch log messages on debug level

  • Other installed Elasticsearch or Kibana plugins, if any

Hi,

I am using searchguard 6. And from java side I have implemented below configuration.

Settings settings = Settings.builder()

.put(“cluster.name”, “searchguard_demo”)

.put(SSLConfigConstants.SEARCHGUARD_SSL_TRANSPORT_PEMCERT_FILEPATH,“C:\Users\c-ajitb\Desktop\SearchguardFiles\esnode.pem”)

.put(SSLConfigConstants.SEARCHGUARD_SSL_TRANSPORT_PEMKEY_FILEPATH, “C:\Users\c-ajitb\Desktop\SearchguardFiles\esnode-key.pem”)

.put(SSLConfigConstants.SEARCHGUARD_SSL_TRANSPORT_PEMTRUSTEDCAS_FILEPATH, “C:\Users\c-ajitb\Desktop\SearchguardFiles\root-ca.pem”)

.put(SSLConfigConstants.SEARCHGUARD_SSL_TRANSPORT_ENFORCE_HOSTNAME_VERIFICATION, “false”)

.put(SSLConfigConstants.SEARCHGUARD_SSL_HTTP_ENABLED, “true”)

.put(SSLConfigConstants.SEARCHGUARD_SSL_HTTP_PEMCERT_FILEPATH, “C:\Users\c-ajitb\Desktop\SearchguardFiles\esnode.pem”)

.put(SSLConfigConstants.SEARCHGUARD_SSL_HTTP_PEMKEY_FILEPATH, “C:\Users\c-ajitb\Desktop\SearchguardFiles\esnode-key.pem”)

.put(SSLConfigConstants.SEARCHGUARD_SSL_HTTP_PEMTRUSTEDCAS_FILEPATH, “C:\Users\c-ajitb\Desktop\SearchguardFiles\root-ca.pem”)

TransportClient transclient = new PreBuiltTransportClient(settings,SearchGuardSSLPlugin.class).addTransportAddress(new TransportAddress(InetAddress.getByName(“172.21.153.176”), 9300));

transclient.threadPool().getThreadContext().putHeader(“Authorization”, "Basic "+Base64.getEncoder().encodeToString(“admin:admin”.getBytes()));

GetResponse getResponse = transclient.prepareGet(“testindex”, “testtype”, “1”).get();

System.out.println(“Response=”+getResponse.getSource());

But I am getting below exception.

ElasticsearchSecurityException[No user found for indices:data/read/get]

I have given admin credentials.

Please reply and provide solution.

Thanks,

Ajit

esnode.pem is not a correct certificate i guess (because its a node and not a client certificate)

···

Am 01.02.2018 um 08:37 schrieb Ajit Bhosale <ajeet.bhosale03@gmail.com>:

When asking questions, please provide the following information:

* Search Guard and Elasticsearch version 6.0.0
* Installed and used enterprise modules, if any No
* JVM version and operating system version 1.7
* Search Guard configuration files
* Elasticsearch log messages on debug level
* Other installed Elasticsearch or Kibana plugins, if any

Hi,
I am using searchguard 6. And from java side I have implemented below configuration.
Settings settings = Settings.builder()
.put("cluster.name", "searchguard_demo")
.put(SSLConfigConstants.SEARCHGUARD_SSL_TRANSPORT_PEMCERT_FILEPATH,"C:\\Users\\c-ajitb\\Desktop\\SearchguardFiles\\esnode.pem")
.put(SSLConfigConstants.SEARCHGUARD_SSL_TRANSPORT_PEMKEY_FILEPATH, "C:\\Users\\c-ajitb\\Desktop\\SearchguardFiles\\esnode-key.pem")
.put(SSLConfigConstants.SEARCHGUARD_SSL_TRANSPORT_PEMTRUSTEDCAS_FILEPATH, "C:\\Users\\c-ajitb\\Desktop\\SearchguardFiles\\root-ca.pem")
.put(SSLConfigConstants.SEARCHGUARD_SSL_TRANSPORT_ENFORCE_HOSTNAME_VERIFICATION, "false")
.put(SSLConfigConstants.SEARCHGUARD_SSL_HTTP_ENABLED, "true")
.put(SSLConfigConstants.SEARCHGUARD_SSL_HTTP_PEMCERT_FILEPATH, "C:\\Users\\c-ajitb\\Desktop\\SearchguardFiles\\esnode.pem")
.put(SSLConfigConstants.SEARCHGUARD_SSL_HTTP_PEMKEY_FILEPATH, "C:\\Users\\c-ajitb\\Desktop\\SearchguardFiles\\esnode-key.pem")
.put(SSLConfigConstants.SEARCHGUARD_SSL_HTTP_PEMTRUSTEDCAS_FILEPATH, "C:\\Users\\c-ajitb\\Desktop\\SearchguardFiles\\root-ca.pem")

TransportClient transclient = new PreBuiltTransportClient(settings,SearchGuardSSLPlugin.class).addTransportAddress(new TransportAddress(InetAddress.getByName("172.21.153.176"), 9300));
transclient.threadPool().getThreadContext().putHeader("Authorization", "Basic "+Base64.getEncoder().encodeToString("admin:admin".getBytes()));
GetResponse getResponse = transclient.prepareGet("testindex", "testtype", "1").get();
System.out.println("Response="+getResponse.getSource());

But I am getting below exception.
ElasticsearchSecurityException[No user found for indices:data/read/get]

I have given admin credentials.
Please reply and provide solution.

Thanks,
Ajit

--
You received this message because you are subscribed to the Google Groups "Search Guard Community Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email to search-guard+unsubscribe@googlegroups.com.
To post to this group, send email to search-guard@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/search-guard/50a1e4b0-e3ed-417f-bd53-bee716e9eeba%40googlegroups.com\.
For more options, visit https://groups.google.com/d/optout\.

but same configuration is autogenerated in elasticsearch yml file from there only I have checked and apply in code.

in elasticsearch.yml

searchguard.ssl.transport.pemcert_filepath: esnode.pem

searchguard.ssl.transport.pemkey_filepath: esnode-key.pem

searchguard.ssl.transport.pemtrustedcas_filepath: root-ca.pem

searchguard.ssl.transport.enforce_hostname_verification: false

searchguard.ssl.http.enabled: true

searchguard.ssl.http.pemcert_filepath: esnode.pem

searchguard.ssl.http.pemkey_filepath: esnode-key.pem

searchguard.ssl.http.pemtrustedcas_filepath: root-ca.pem

searchguard.allow_unsafe_democertificates: true

searchguard.allow_default_init_sgindex: true

searchguard.authcz.admin_dn:

  • CN=kirk,OU=client,O=client,L=test, C=de

please reply what changes needed.

···

On Friday, 2 February 2018 04:09:02 UTC+5:30, Search Guard wrote:

esnode.pem is not a correct certificate i guess (because its a node and not a client certificate)

Am 01.02.2018 um 08:37 schrieb Ajit Bhosale ajeet.b...@gmail.com:

When asking questions, please provide the following information:

  • Search Guard and Elasticsearch version 6.0.0
  • Installed and used enterprise modules, if any No
  • JVM version and operating system version 1.7
  • Search Guard configuration files
  • Elasticsearch log messages on debug level
  • Other installed Elasticsearch or Kibana plugins, if any

Hi,

I am using searchguard 6. And from java side I have implemented below configuration.

Settings settings = Settings.builder()

.put(“cluster.name”, “searchguard_demo”)

.put(SSLConfigConstants.SEARCHGUARD_SSL_TRANSPORT_PEMCERT_FILEPATH,“C:\Users\c-ajitb\Desktop\SearchguardFiles\esnode.pem”)

.put(SSLConfigConstants.SEARCHGUARD_SSL_TRANSPORT_PEMKEY_FILEPATH, “C:\Users\c-ajitb\Desktop\SearchguardFiles\esnode-key.pem”)

.put(SSLConfigConstants.SEARCHGUARD_SSL_TRANSPORT_PEMTRUSTEDCAS_FILEPATH, “C:\Users\c-ajitb\Desktop\SearchguardFiles\root-ca.pem”)

.put(SSLConfigConstants.SEARCHGUARD_SSL_TRANSPORT_ENFORCE_HOSTNAME_VERIFICATION, “false”)

.put(SSLConfigConstants.SEARCHGUARD_SSL_HTTP_ENABLED, “true”)

.put(SSLConfigConstants.SEARCHGUARD_SSL_HTTP_PEMCERT_FILEPATH, “C:\Users\c-ajitb\Desktop\SearchguardFiles\esnode.pem”)

.put(SSLConfigConstants.SEARCHGUARD_SSL_HTTP_PEMKEY_FILEPATH, “C:\Users\c-ajitb\Desktop\SearchguardFiles\esnode-key.pem”)

.put(SSLConfigConstants.SEARCHGUARD_SSL_HTTP_PEMTRUSTEDCAS_FILEPATH, “C:\Users\c-ajitb\Desktop\SearchguardFiles\root-ca.pem”)

TransportClient transclient = new PreBuiltTransportClient(settings,SearchGuardSSLPlugin.class).addTransportAddress(new TransportAddress(InetAddress.getByName(“172.21.153.176”), 9300));

transclient.threadPool().getThreadContext().putHeader(“Authorization”, "Basic "+Base64.getEncoder().encodeToString(“admin:admin”.getBytes()));

GetResponse getResponse = transclient.prepareGet(“testindex”, “testtype”, “1”).get();

System.out.println(“Response=”+getResponse.getSource());

But I am getting below exception.

ElasticsearchSecurityException[No user found for indices:data/read/get]

I have given admin credentials.

Please reply and provide solution.

Thanks,

Ajit


You received this message because you are subscribed to the Google Groups “Search Guard Community Forum” group.

To unsubscribe from this group and stop receiving emails from it, send an email to search-guard...@googlegroups.com.

To post to this group, send email to search...@googlegroups.com.

To view this discussion on the web visit https://groups.google.com/d/msgid/search-guard/50a1e4b0-e3ed-417f-bd53-bee716e9eeba%40googlegroups.com.

For more options, visit https://groups.google.com/d/optout.

Thanks I changed file used kirk.pem and kirk-key.pem files it worked. but It is giving permission to all user to all index.but from kibana i created some user and provided roles and permissions to perticulat index but permissions are not working.

···

On Friday, 2 February 2018 12:07:05 UTC+5:30, kanchank...@gmail.com wrote:

but same configuration is autogenerated in elasticsearch yml file from there only I have checked and apply in code.

in elasticsearch.yml

searchguard.ssl.transport.pemcert_filepath: esnode.pem

searchguard.ssl.transport.pemkey_filepath: esnode-key.pem

searchguard.ssl.transport.pemtrustedcas_filepath: root-ca.pem

searchguard.ssl.transport.enforce_hostname_verification: false

searchguard.ssl.http.enabled: true

searchguard.ssl.http.pemcert_filepath: esnode.pem

searchguard.ssl.http.pemkey_filepath: esnode-key.pem

searchguard.ssl.http.pemtrustedcas_filepath: root-ca.pem

searchguard.allow_unsafe_democertificates: true

searchguard.allow_default_init_sgindex: true

searchguard.authcz.admin_dn:

  • CN=kirk,OU=client,O=client,L=test, C=de

please reply what changes needed.

On Friday, 2 February 2018 04:09:02 UTC+5:30, Search Guard wrote:

esnode.pem is not a correct certificate i guess (because its a node and not a client certificate)

Am 01.02.2018 um 08:37 schrieb Ajit Bhosale ajeet.b...@gmail.com:

When asking questions, please provide the following information:

  • Search Guard and Elasticsearch version 6.0.0
  • Installed and used enterprise modules, if any No
  • JVM version and operating system version 1.7
  • Search Guard configuration files
  • Elasticsearch log messages on debug level
  • Other installed Elasticsearch or Kibana plugins, if any

Hi,

I am using searchguard 6. And from java side I have implemented below configuration.

Settings settings = Settings.builder()

.put(“cluster.name”, “searchguard_demo”)

.put(SSLConfigConstants.SEARCHGUARD_SSL_TRANSPORT_PEMCERT_FILEPATH,“C:\Users\c-ajitb\Desktop\SearchguardFiles\esnode.pem”)

.put(SSLConfigConstants.SEARCHGUARD_SSL_TRANSPORT_PEMKEY_FILEPATH, “C:\Users\c-ajitb\Desktop\SearchguardFiles\esnode-key.pem”)

.put(SSLConfigConstants.SEARCHGUARD_SSL_TRANSPORT_PEMTRUSTEDCAS_FILEPATH, “C:\Users\c-ajitb\Desktop\SearchguardFiles\root-ca.pem”)

.put(SSLConfigConstants.SEARCHGUARD_SSL_TRANSPORT_ENFORCE_HOSTNAME_VERIFICATION, “false”)

.put(SSLConfigConstants.SEARCHGUARD_SSL_HTTP_ENABLED, “true”)

.put(SSLConfigConstants.SEARCHGUARD_SSL_HTTP_PEMCERT_FILEPATH, “C:\Users\c-ajitb\Desktop\SearchguardFiles\esnode.pem”)

.put(SSLConfigConstants.SEARCHGUARD_SSL_HTTP_PEMKEY_FILEPATH, “C:\Users\c-ajitb\Desktop\SearchguardFiles\esnode-key.pem”)

.put(SSLConfigConstants.SEARCHGUARD_SSL_HTTP_PEMTRUSTEDCAS_FILEPATH, “C:\Users\c-ajitb\Desktop\SearchguardFiles\root-ca.pem”)

TransportClient transclient = new PreBuiltTransportClient(settings,SearchGuardSSLPlugin.class).addTransportAddress(new TransportAddress(InetAddress.getByName(“172.21.153.176”), 9300));

transclient.threadPool().getThreadContext().putHeader(“Authorization”, "Basic "+Base64.getEncoder().encodeToString(“admin:admin”.getBytes()));

GetResponse getResponse = transclient.prepareGet(“testindex”, “testtype”, “1”).get();

System.out.println(“Response=”+getResponse.getSource());

But I am getting below exception.

ElasticsearchSecurityException[No user found for indices:data/read/get]

I have given admin credentials.

Please reply and provide solution.

Thanks,

Ajit


You received this message because you are subscribed to the Google Groups “Search Guard Community Forum” group.

To unsubscribe from this group and stop receiving emails from it, send an email to search-guard...@googlegroups.com.

To post to this group, send email to search...@googlegroups.com.

To view this discussion on the web visit https://groups.google.com/d/msgid/search-guard/50a1e4b0-e3ed-417f-bd53-bee716e9eeba%40googlegroups.com.

For more options, visit https://groups.google.com/d/optout.

you need to get familiar with the different types of certificates in Search Guard,
see Production environments | Security for Elasticsearch | Search Guard

···

Am 02.02.2018 um 08:48 schrieb kanchankachare88@gmail.com:

Thanks I changed file used kirk.pem and kirk-key.pem files it worked. but It is giving permission to all user to all index.but from kibana i created some user and provided roles and permissions to perticulat index but permissions are not working.

On Friday, 2 February 2018 12:07:05 UTC+5:30, kanchank...@gmail.com wrote:
but same configuration is autogenerated in elasticsearch yml file from there only I have checked and apply in code.

in elasticsearch.yml

searchguard.ssl.transport.pemcert_filepath: esnode.pem
searchguard.ssl.transport.pemkey_filepath: esnode-key.pem
searchguard.ssl.transport.pemtrustedcas_filepath: root-ca.pem
searchguard.ssl.transport.enforce_hostname_verification: false
searchguard.ssl.http.enabled: true
searchguard.ssl.http.pemcert_filepath: esnode.pem
searchguard.ssl.http.pemkey_filepath: esnode-key.pem
searchguard.ssl.http.pemtrustedcas_filepath: root-ca.pem
searchguard.allow_unsafe_democertificates: true
searchguard.allow_default_init_sgindex: true
searchguard.authcz.admin_dn:
  - CN=kirk,OU=client,O=client,L=test, C=de

please reply what changes needed.

On Friday, 2 February 2018 04:09:02 UTC+5:30, Search Guard wrote:
esnode.pem is not a correct certificate i guess (because its a node and not a client certificate)

> Am 01.02.2018 um 08:37 schrieb Ajit Bhosale <ajeet.b...@gmail.com>:
>
> When asking questions, please provide the following information:
>
> * Search Guard and Elasticsearch version 6.0.0
> * Installed and used enterprise modules, if any No
> * JVM version and operating system version 1.7
> * Search Guard configuration files
> * Elasticsearch log messages on debug level
> * Other installed Elasticsearch or Kibana plugins, if any
>
> Hi,
> I am using searchguard 6. And from java side I have implemented below configuration.
> Settings settings = Settings.builder()
> .put("cluster.name", "searchguard_demo")
> .put(SSLConfigConstants.SEARCHGUARD_SSL_TRANSPORT_PEMCERT_FILEPATH,"C:\\Users\\c-ajitb\\Desktop\\SearchguardFiles\\esnode.pem")
> .put(SSLConfigConstants.SEARCHGUARD_SSL_TRANSPORT_PEMKEY_FILEPATH, "C:\\Users\\c-ajitb\\Desktop\\SearchguardFiles\\esnode-key.pem")
> .put(SSLConfigConstants.SEARCHGUARD_SSL_TRANSPORT_PEMTRUSTEDCAS_FILEPATH, "C:\\Users\\c-ajitb\\Desktop\\SearchguardFiles\\root-ca.pem")
> .put(SSLConfigConstants.SEARCHGUARD_SSL_TRANSPORT_ENFORCE_HOSTNAME_VERIFICATION, "false")
> .put(SSLConfigConstants.SEARCHGUARD_SSL_HTTP_ENABLED, "true")
> .put(SSLConfigConstants.SEARCHGUARD_SSL_HTTP_PEMCERT_FILEPATH, "C:\\Users\\c-ajitb\\Desktop\\SearchguardFiles\\esnode.pem")
> .put(SSLConfigConstants.SEARCHGUARD_SSL_HTTP_PEMKEY_FILEPATH, "C:\\Users\\c-ajitb\\Desktop\\SearchguardFiles\\esnode-key.pem")
> .put(SSLConfigConstants.SEARCHGUARD_SSL_HTTP_PEMTRUSTEDCAS_FILEPATH, "C:\\Users\\c-ajitb\\Desktop\\SearchguardFiles\\root-ca.pem")
>
> TransportClient transclient = new PreBuiltTransportClient(settings,SearchGuardSSLPlugin.class).addTransportAddress(new TransportAddress(InetAddress.getByName("172.21.153.176"), 9300));
> transclient.threadPool().getThreadContext().putHeader("Authorization", "Basic "+Base64.getEncoder().encodeToString("admin:admin".getBytes()));
> GetResponse getResponse = transclient.prepareGet("testindex", "testtype", "1").get();
> System.out.println("Response="+getResponse.getSource());
>
> But I am getting below exception.
> ElasticsearchSecurityException[No user found for indices:data/read/get]
>
> I have given admin credentials.
> Please reply and provide solution.
>
> Thanks,
> Ajit
>
> --
> You received this message because you are subscribed to the Google Groups "Search Guard Community Forum" group.
> To unsubscribe from this group and stop receiving emails from it, send an email to search-guard...@googlegroups.com.
> To post to this group, send email to search...@googlegroups.com.
> To view this discussion on the web visit https://groups.google.com/d/msgid/search-guard/50a1e4b0-e3ed-417f-bd53-bee716e9eeba%40googlegroups.com\.
> For more options, visit https://groups.google.com/d/optout\.

--
You received this message because you are subscribed to the Google Groups "Search Guard Community Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email to search-guard+unsubscribe@googlegroups.com.
To post to this group, send email to search-guard@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/search-guard/2aa573cb-7ded-4777-9d3a-119650bb1c87%40googlegroups.com\.
For more options, visit https://groups.google.com/d/optout\.

please could you let me know what I should replace to work permission as I given in kibana.If I need to change kirk files so what should be procedure to create it.

···

On Friday, 2 February 2018 13:28:28 UTC+5:30, Search Guard wrote:

you need to get familiar with the different types of certificates in Search Guard,

see http://docs.search-guard.com/latest/tls-in-production

Am 02.02.2018 um 08:48 schrieb kanchank...@gmail.com:

Thanks I changed file used kirk.pem and kirk-key.pem files it worked. but It is giving permission to all user to all index.but from kibana i created some user and provided roles and permissions to perticulat index but permissions are not working.

On Friday, 2 February 2018 12:07:05 UTC+5:30, kanchank...@gmail.com wrote:

but same configuration is autogenerated in elasticsearch yml file from there only I have checked and apply in code.

in elasticsearch.yml

searchguard.ssl.transport.pemcert_filepath: esnode.pem

searchguard.ssl.transport.pemkey_filepath: esnode-key.pem

searchguard.ssl.transport.pemtrustedcas_filepath: root-ca.pem

searchguard.ssl.transport.enforce_hostname_verification: false

searchguard.ssl.http.enabled: true

searchguard.ssl.http.pemcert_filepath: esnode.pem

searchguard.ssl.http.pemkey_filepath: esnode-key.pem

searchguard.ssl.http.pemtrustedcas_filepath: root-ca.pem

searchguard.allow_unsafe_democertificates: true

searchguard.allow_default_init_sgindex: true

searchguard.authcz.admin_dn:

  • CN=kirk,OU=client,O=client,L=test, C=de

please reply what changes needed.

On Friday, 2 February 2018 04:09:02 UTC+5:30, Search Guard wrote:

esnode.pem is not a correct certificate i guess (because its a node and not a client certificate)

Am 01.02.2018 um 08:37 schrieb Ajit Bhosale ajeet.b...@gmail.com:

When asking questions, please provide the following information:

  • Search Guard and Elasticsearch version 6.0.0
  • Installed and used enterprise modules, if any No
  • JVM version and operating system version 1.7
  • Search Guard configuration files
  • Elasticsearch log messages on debug level
  • Other installed Elasticsearch or Kibana plugins, if any

Hi,
I am using searchguard 6. And from java side I have implemented below configuration.
Settings settings = Settings.builder()
.put(“cluster.name”, “searchguard_demo”)
.put(SSLConfigConstants.SEARCHGUARD_SSL_TRANSPORT_PEMCERT_FILEPATH,“C:\Users\c-ajitb\Desktop\SearchguardFiles\esnode.pem”)
.put(SSLConfigConstants.SEARCHGUARD_SSL_TRANSPORT_PEMKEY_FILEPATH, “C:\Users\c-ajitb\Desktop\SearchguardFiles\esnode-key.pem”)
.put(SSLConfigConstants.SEARCHGUARD_SSL_TRANSPORT_PEMTRUSTEDCAS_FILEPATH, “C:\Users\c-ajitb\Desktop\SearchguardFiles\root-ca.pem”)
.put(SSLConfigConstants.SEARCHGUARD_SSL_TRANSPORT_ENFORCE_HOSTNAME_VERIFICATION, “false”)
.put(SSLConfigConstants.SEARCHGUARD_SSL_HTTP_ENABLED, “true”)
.put(SSLConfigConstants.SEARCHGUARD_SSL_HTTP_PEMCERT_FILEPATH, “C:\Users\c-ajitb\Desktop\SearchguardFiles\esnode.pem”)
.put(SSLConfigConstants.SEARCHGUARD_SSL_HTTP_PEMKEY_FILEPATH, “C:\Users\c-ajitb\Desktop\SearchguardFiles\esnode-key.pem”)
.put(SSLConfigConstants.SEARCHGUARD_SSL_HTTP_PEMTRUSTEDCAS_FILEPATH, “C:\Users\c-ajitb\Desktop\SearchguardFiles\root-ca.pem”)

TransportClient transclient = new PreBuiltTransportClient(settings,SearchGuardSSLPlugin.class).addTransportAddress(new TransportAddress(InetAddress.getByName(“172.21.153.176”), 9300));
transclient.threadPool().getThreadContext().putHeader(“Authorization”, "Basic "+Base64.getEncoder().encodeToString(“admin:admin”.getBytes()));
GetResponse getResponse = transclient.prepareGet(“testindex”, “testtype”, “1”).get();
System.out.println(“Response=”+getResponse.getSource());

But I am getting below exception.
ElasticsearchSecurityException[No user found for indices:data/read/get]

I have given admin credentials.
Please reply and provide solution.

Thanks,
Ajit


You received this message because you are subscribed to the Google Groups “Search Guard Community Forum” group.
To unsubscribe from this group and stop receiving emails from it, send an email to search-guard...@googlegroups.com.
To post to this group, send email to search...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/search-guard/50a1e4b0-e3ed-417f-bd53-bee716e9eeba%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


You received this message because you are subscribed to the Google Groups “Search Guard Community Forum” group.

To unsubscribe from this group and stop receiving emails from it, send an email to search-guard...@googlegroups.com.

To post to this group, send email to search...@googlegroups.com.

To view this discussion on the web visit https://groups.google.com/d/msgid/search-guard/2aa573cb-7ded-4777-9d3a-119650bb1c87%40googlegroups.com.

For more options, visit https://groups.google.com/d/optout.