After installing elastic search you may also install X-Pack. But ensure to install the right compatible version of X-pack for the installed version of Elastic Search.
Features of X-pack :
- Protect Data in ES.
- Put a password and cotrol user access.
- Restrict certain user roles to access certain kind of data. Managing access control.
- Encryption - Prevent Snooping Tampering and Sniffing
- Restrict access upto to field level in your document data.
- Who can view the cluster
- Who can add / delete index
- Who can access sensitive documents
- And restrict access at field level.
- Audit logging - Who did what and when.
- Monitoring - Seamless diagnostic of clusters
- Perform real time and historic analysis.
- Generate schedule report. Helps visualise data better.
PS : Some of the features mentioned above are paid :
Installing X-Pack :
You need to run this on every node in your cluster if its a multiple cluster setup.
bin/elasticsearch-plugin install x-pack
X-Pack will automatically create number of indexes with in ES. If you have disable make sure to provide the following in the yml file
action.auto_create_index: .security,.monitoring*,.watches,.triggered_watches,.watcher-history*,.ml*
You must install X-Pack for kibana too :
bin/kibana-plugin install x-pack
Now run ES and kibana
You will now see a log in page when you try to access kibana
By default the login credentials are below :
Username: elastic Password: changeme
Comments
Post a Comment