Elasticsearch의 ./kibana index가 Unassigned 발생하는 이유는
./kibana index의 number_of_replicas 값이 ES의 기본 설정값 보다 높은 경우 발생한다.
이런 경우 ./kibana index의 template 값을 변경
$ curl -XPUT 'localhost:9200/.kibana/_settings' -H 'Content-Type: application/json' -d '
{
"index" : {
"number_of_replicas" : 0
}
}
'