Plugin Development for KIbana 5.6
Plugin Development for KIbana 5.6 Setup Development mode for Kibana git clone https://github.com/elastic/kibana.git cd kibana git checkout 5.6 (version of kibana you want to write plugin ,eg.5.6 is my kibana version) Make sure you have the same node version in kibana/.node-version dir Steps to upgrade Node version sudo npm cache clean -f sudo npm install -g n sudo n 6.11.5 Restart the machine to apply changes Note: Just to improve a little bit more this answer, with "n" you can install any node version, so if you want the 8.6.0 version just type : "sudo n 8.6.0" instead "sudo n 6.11.5". Finally restart the machine, to apply changes The Kibana configuration file is kibana.yml and it's located in the config directory. We need to edit this file: $ cd /opt/kibana $ vi config/kibana.yml Kibana defaults to port 5601, but we want to set it explicitly. This port should not conflict with anything on the sand...