Skip to content

Latest commit

 

History

History
25 lines (24 loc) · 758 Bytes

File metadata and controls

25 lines (24 loc) · 758 Bytes

XPack Exercise

  • Stop ElasticSearch and Kibana:
sudo service kibana stop && sudo service elasticsearch stop
  • Installing X-Pack plug-in for ElasticSearch:
cd /usr/share/elasticsearch/
sudo ./bin/elasticsearch-plugin install x-pack
  • Install X-Pack plug-in for Kibana (will take some time):
cd /usr/share/kibana/
sudo ./bin/kibana-plugin install x-pack
  • Start ElasticSearch and Kibana services:
sudo service elasticsearch start && sudo service kibana start
  • Navigate to http://ip-address:5601
  • Login with default credentials: elastic/changeme
  • Explore the 'Monitoring' and 'Management' links
  • Feel free to install other monitoring plug-ins to find out which one you like more
  • Links provided on the previous slide...