...
Code Block | ||
---|---|---|
| ||
$ cd /opt/datacenter/atlassian/elasticsearch/config
$ vi elasticsearch.yml
--------------------
http.port: 6991 ## 포트 설정
action.auto_create_index: ".watches,.triggered_watches,.watcher-history-*"
network.host: 0.0.0.0
xpack.security.enabled: false
-------------------- |
...
Expand | ||
---|---|---|
| ||
Code Block | ||
---|---|---|
| ||
$ cd /opt/datacenter/atlassian/elasticsearch/bin $ ./elasticsearch-plugin install -b https://packages.atlassian.com/maven-internal/com/atlassian/elasticsearch/buckler-plugin/2.1.2/buckler-plugin-2.1.2-6.8.6.zip |
...
Expand | ||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||
|
Elasticsearch 시작
Code Block | ||
---|---|---|
| ||
$ cd /opt/datacenter/atlassian/elasticsearch/bin $ ./elasticsearch -d ## 백그라운드로 실행하기 위한 옵션 부여 |
...