Aaron87 Posted September 2, 2021 Posted September 2, 2021 How to install ElasticSearch under armbian, I tried to install it via docker, but neither ElasticSearch nor kibana started properly.
Helmut Posted September 3, 2021 Posted September 3, 2021 I took the Linux x64 package without JDK (OSS 7.0.1), extracted it to /opt and manually created user, group, systemd config, elasticsearch.yml. So, yes it is possible and has been running fine for me for the last two years. The "commercial" flavour also provides a Debian ARM64 installation package that you can download. Maybe try this. I think personal use is free of charge. https://www.elastic.co/downloads/past-releases/elasticsearch-7-14-1
Alex-Odroid Posted December 1, 2021 Posted December 1, 2021 On 9/3/2021 at 8:49 PM, Helmut said: I took the Linux x64 package without JDK (OSS 7.0.1), extracted it to /opt and manually created user, group, systemd config, elasticsearch.yml. So, yes it is possible and has been running fine for me for the last two years. The "commercial" flavour also provides a Debian ARM64 installation package that you can download. Maybe try this. I think personal use is free of charge. https://www.elastic.co/downloads/past-releases/elasticsearch-7-14-1 Can you write a small tutorial on how to actually do that? I am desperately trying to get Spotlight Search running for Samba and failing at installing elasticsearch on my Odroid HC-2.
Helmut Posted December 10, 2021 Posted December 10, 2021 Using the elasticsearch deb aarch64 package from the Elastic download site, it should be easy to install elasticsearch. It works on my Odroid N2. Start with trying the following. wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-7.15.2-arm64.deb dpkg -i elasticsearch-7.15.2-arm64.deb systemctl daemon-reload systemctl enable elasticsearch.service systemctl start elasticsearch.service
Recommended Posts