[Elasticsearch] Elasticsearch 5.0 GA 살펴보기 - 2
Elastic/Elasticsearch 2016. 11. 2. 17:49site plugin head 설치를 해보려 합니다.
설치 방법이 달라졌습니다.
[사전준비]
Elasticsearch 5.0 GA 살펴보기 - 1 에서 클러스터 구성
그냥 bin/elasticsearch, bin/elasticsearch 두 번 하시면 됩니다.
[설치 명령어]
$ bin/elasticsearch-plugin install [plugin-name]
[Head Plugins]
https://github.com/mobz/elasticsearch-head#running-with-built-in-server
설치 방법은 위 문서에 잘 나와 있습니다.
아래는 제가 그냥 실행한 명령어를 나열 하였습니다.
$ git clone git://github.com/mobz/elasticsearch-head.git
$ cd elasticsearch-head/
$ npm install
$ sudo npm install -g grunt-cli
$ grunt server
[Head 접속]
$ open http://localhost:9100
- cross origin 정책으로 인해서 초기 접속이 되지 않습니다.
- elasticsearch.yml 에 아래 내용 추가해 주시고 재실행 하시면 됩니다.
[Cross Origin 정책수정]
$ vi config/elasticsearch.yml
http.cors.enabled: true
http.cors.allow-origin: "*"
노드명이 많이 아쉽내요 ㅠ.ㅠ