Rate This Document
Findability
Accuracy
Completeness
Readability

Porting Kibana 5.5.0

  1. Download and decompress the Kibana 5.5.0 installation package.
    1
    2
    wget https://artifacts.elastic.co/downloads/kibana/kibana-5.5.0-linux-x86_64.tar.gz
    tar -zxf kibana-5.5.0-linux-x86_64.tar.gz
    
  2. Use the Kunpeng Porting Advisor to scan the Kibana 5.5.0 installation package.
    • For details about how to use the Kunpeng Porting Advisor, see .
    • The scan result shows that no JAR packages need to be replaced.
  3. Replace x86-based Node.js with ARM-based Node.js.
    1. Delete the files in the kibana-5.5.0-linux-x86_64/node/ directory.
      1
      rm -rf ./kibana-5.5.0-linux-x86_64/node/*
      
    2. Download ARM-based Node.js.
      1
      wget https://nodejs.org/dist/v6.10.2/node-v6.10.2-linux-arm64.tar.gz
      
    3. Decompress the node-v6.10.2-linux-arm64.tar.gz package.
      1
      tar -zxvf node-v6.10.2-linux-arm64.tar.gz
      
    4. Copy the files in the node-v6.10.2-linux-arm64/ directory to the kibana-5.5.0-linux-x86_64/node/ directory.
      1
      cp -r node-v6.10.2-linux-arm64/* ./kibana-5.5.0-linux-x86_64/node/