Elasticsearch:修订间差异

来自Gea-Suan Lin's Wiki
跳到导航 跳到搜索
此页面具有访问限制。如果您看见此消息,则说明您没有权限访问此页面。
 
(未显示同一用户的13个中间版本)
第2行: 第2行:


== 安裝 ==
== 安裝 ==
 在[[Ubuntu]] 16.04 下可以透過官方提供的APT Repository安裝<ref>{{Cite web |url=https://askubuntu.com/questions/848173/how-to-install-elasticsearch-on-16-04-lts |title=search - How to install Elasticsearch on 16.04 LTs - Ask Ubuntu| accessdate=2018-04-08}}</ref>,包含了[[Java]]環境與Elasticsearch:
 
 在[[Ubuntu]]下可以透過官方提供的APT Repository安裝<ref>{{Cite web |url=https://www.elastic.co/guide/en/elasticsearch/reference/current/deb.html |title=Install Elasticsearch with Debian Package |accessdate=2020-08-05 |language=en}}</ref>,包含了[[Java]]環境與Elasticsearch:
 
<syntaxhighlight lang="bash">
<syntaxhighlight lang="bash">
apt install default-jre
sudo apt -y install default-jre; wget -qO - https://artifacts.elastic.co/GPG-KEY-elasticsearch | sudo apt-key add -; echo "deb https://artifacts.elastic.co/packages/7.x/apt stable main" | sudo tee /etc/apt/sources.list.d/elastic-7.x.list; sudo apt update; sudo apt -y install elasticsearch
cd /tmp
wget -qO - https://artifacts.elastic.co/GPG-KEY-elasticsearch | sudo apt-key add -
echo "deb https://artifacts.elastic.co/packages/6.x/apt stable main" | sudo tee -a /etc/apt/sources.list.d/elasticsearch.list
apt update
apt install elasticsearch
</syntaxhighlight>
</syntaxhighlight>
== 設定 ==
先設為開機啟動服務:
<syntaxhighlight lang="bash">
sudo systemctl enable elasticsearch.service
</syntaxhighlight>
== 相關連結 ==
* [[Kibana]]


== 參考文獻 ==
== 參考文獻 ==

2020年8月5日 (三) 14:12的最新版本

Elasticsearch是一套搜尋引擎。

安裝

Ubuntu下可以透過官方提供的APT Repository安裝[1],包含了Java環境與Elasticsearch:

sudo apt -y install default-jre; wget -qO - https://artifacts.elastic.co/GPG-KEY-elasticsearch | sudo apt-key add -; echo "deb https://artifacts.elastic.co/packages/7.x/apt stable main" | sudo tee /etc/apt/sources.list.d/elastic-7.x.list; sudo apt update; sudo apt -y install elasticsearch

設定

先設為開機啟動服務:

sudo systemctl enable elasticsearch.service

相關連結

參考文獻

  1. Install Elasticsearch with Debian Package. [2020-08-05] (English). 

外部連結