Mandatary
Installing Java 1.8
Check installed Java version
$ java -version
Installing Elasticsearch
Download and install the .tar.gz package
$ wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-6.2.3.tar.gz
$ tar -xzvf elasticsearch-6.2.3.tar.gz
Note
Because this article was written with reference to the elastic install guide, the current version and installation method may be different.
Mac OS X 환경에서 wget 명령을 찾을 수 없다고 하는 경우가 있다. Mac OS X 환경에는 기본적으로 wget 이 없다. 그러므로 아래와 같이 curl 사용 또는 wget 을 설치한다.
$ curl -O https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-6.2.3.tar.gz
P.S 대문자 O이며, 숫자 0이 아니다.
$ brew install wget
$ wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-6.2.3.tar.gz
'OpenSource' 카테고리의 다른 글
nGrinder(Performance Test Tool) 설치 및 가이드 (0) | 2022.06.21 |
---|