Porting Kibana 5.5.0
- 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
- 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.
- Replace x86-based Node.js with ARM-based Node.js.
- Delete the files in the kibana-5.5.0-linux-x86_64/node/ directory.
1rm -rf ./kibana-5.5.0-linux-x86_64/node/*
- Download ARM-based Node.js.
1wget https://nodejs.org/dist/v6.10.2/node-v6.10.2-linux-arm64.tar.gz - Decompress the node-v6.10.2-linux-arm64.tar.gz package.
1tar -zxvf node-v6.10.2-linux-arm64.tar.gz
- Copy the files in the node-v6.10.2-linux-arm64/ directory to the kibana-5.5.0-linux-x86_64/node/ directory.
1cp -r node-v6.10.2-linux-arm64/* ./kibana-5.5.0-linux-x86_64/node/
- Delete the files in the kibana-5.5.0-linux-x86_64/node/ directory.
Parent topic: Porting Guide (CentOS & openEuler)