Questions tagged [elasticsearch-x-pack]

X-Pack is an Elastic Stack extension that bundles security, alerting, monitoring, reporting, and graph capabilities into one easy-to-install package. While the X-Pack components are designed to work together seamlessly, you can easily enable or disable the features you want to use.

140 questions
0
votes
1 answer

Elasticserach sql query with passing parameters so we prevent sql Injection

I am using elastic search 7.6.2 version. Passing parameters to a query not working in kibana. When I am trying to add params query not working in kibana dev tool if we try with params query will work fine. POST /_sql?format=txt …
0
votes
1 answer

How to have a read only dashboard for a particular user in Kibana

I am running Kibana 7.7.1 on windows system. I tried to achieve this using xpack security. Kibana license is Basic(free) version. My ES config: xpack.security.enabled: true discovery.type: single-node I used following command to generate…
0
votes
3 answers

Elasticsearch with xpack security fails

I am trying to set up a simple ELK stack using docker. While I disable xpack security it starts fine and I can access the Kibana interface. If xpack security is enabled I get an "Kibana server is not ready yet" error from the Kibana interface. This…
In0cenT
  • 481
  • 2
  • 11
  • 25
0
votes
1 answer

Can't turn on X-Pack Elasticsearch

"version" : { "number" : "6.6.2", ... "minimum_wire_compatibility_version" : "5.6.0", "minimum_index_compatibility_version" : "5.0.0" } Need to set password for Elasticsearch. Try: Goto /etc/elasticsearch/elasticsearch.yml and…
0
votes
0 answers

Elasticsearch installation with xpack fails

I am installing Elasticsearch 6.6 with Xpack and it is failing on "nativeUser" issue: failed: [elasticsearch1] (item=nativeUser) => { "changed": false, "content": "", "invocation": { "module_args": { "attributes":…
jrz
  • 1,213
  • 4
  • 20
  • 54
0
votes
1 answer

ElasticSearch Security fearues license?

I'm evaluating ES for our project use case. Once of the requirement is security. I have some questions regarding ES license and security features ? Does basic license include security ? If security enabled in basic ( free ) version does it include…
Viraj
  • 5,083
  • 6
  • 35
  • 76
0
votes
1 answer

what is kibana_system role for in elasticsearch 5.5

I am using elasticsearch 5.6 with xpack plugin. my kibana user connects to elstic with read_only role. "read_only": { "cluster": [ "monitor" ], "indices" : [ { "names" : [ "my-index-*" ], …
Maria Dorohin
  • 355
  • 4
  • 17
0
votes
0 answers

error in kibana login after xpack enabled

I am running 7.6.1 ES and kibana in Ubuntu server . once i enabled the xpack security i not able to login to kibana in ES configuration xpack.security.enabled: true discovery.type: single-node i used following command to generate…
Dilip
  • 697
  • 6
  • 16
  • 35
0
votes
1 answer

End user authentication with Elastic Search X-Pack

I am building a search application. I would like our end users to be able to query our Elastic index which is on Elastic Cloud. I would like to allow users to access certain indexes and not others. I see that X-Pack is included in our paid Elastic…
GNG
  • 1,341
  • 2
  • 23
  • 50
0
votes
1 answer

elasticsearch default credentials

i've found that the default credentials for ES are elastic:changeme but it's not working for me! am i missing something? the error : { "error": { "root_cause": [ { "type": "security_exception", "reason": "failed…
Amine Maalfi
  • 145
  • 9
0
votes
0 answers

How to create self signed certifcates for 2 set of Statefulset's pods that are communicating with each other through service

I am trying to secure communication between Elasticsearch, Logstash, Filebeat, and Kibana. I have generated certificates as per this blog using x-pack certutil, but when my logstash service is trying to communicate with elasticsearch's data nodes…
0
votes
1 answer

NoSuchAlgorithmException[1.2.840.113549.1.1.1 KeyFactory not available];

I am using elastic search 5.6.15 with SSL configured. I got the cluster up and running and from my client server i am able to check the elastic cluster health with curl. Elastic search documentation…
Aravind
  • 93
  • 1
  • 3
  • 8
0
votes
1 answer

java.lang.UnsupportedOperationException on X-pack enabled ABAC system

KB/ES version: 7.2 I am trying to build an ABAC security based Multi-Tenant system with X-Pack platinum license. There is an Index which have 3 Client's data. The Admins who have access to all three Client's data, able to view the Kibana Dashboards…
Soumendra
  • 1,518
  • 3
  • 27
  • 54
0
votes
1 answer

Failed to load plugin class [org.elasticsearch.xpack.XPackPlugin]]; nested: InvocationTargetException; nested: NoSuchFieldError[V_5_6_0]

We are getting below exception while working with elastic search x-pack while loading . stack trace is as below while creating PreBuiltXPackTransportClient. ElasticsearchException[Failed to load plugin class [org.elasticsearch.xpack.XPackPlugin]];…
prafful
  • 33
  • 7
0
votes
0 answers

org.elasticsearch.ElasticsearchException: Failed to load plugin class [org.elasticsearch.xpack.XPackPlugin]

I am trying to connect with elasticsearch server(6.8.0) which is x-pack enabled and starting without any error. When I am trying to connect with java code following steps on webpage…