버전

아래 빌드는 ES 5.4.1을 이용하여 테스트 완료 하였습니다.

nvm 설치

$ sudo apt-get install build-essential and libssl-dev
$ curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.0/install.sh | bash
$ source ~/.bashrc

nvm 설치 검증

$ command -v nvm

키바나 repository clone

$ git clone https://github.com/elastic/kibana.git kibana
$ cd kibana
$ git checkout -b v5.4.1 v5.4.1

키바나 실행

$ nvm install "$(cat .node-version)"
$ npm install
$ node scripts/makelogs
$ npm start

키바나 테스트 하기

$ npm run test

키바나 빌드 하기

빌드만 사용하기를 원하는 분들은 위의 키바나 테스트를 생략해도 무방하다.

$ npm run build -- --skip-os-packages

Reference