반응형
elastic search - failed to authenticate user [elastic]
elasticsearch 7.6 버전을 잘 설치하고 기동했다.
특별히 문제가 없어보였는데, 호출시 인증 관련 에러가 발생했다.
1. 호출
curl -X GET --user elastic:tmvprxmfk1! "http://localhost:9200/_template/attic_template"
Enter host password for user 'elastic':
2. 에러 발생
{
"error": {
"root_cause": [
{
"type": "security_exception",
"reason": "failed to authenticate user [elastic]",
"header": {
"WWW-Authenticate": "Basic realm=\"security\" charset=\"UTF-8\""
}
}
],
"type": "security_exception",
"reason": "failed to authenticate user [elastic]",
"header": {
"WWW-Authenticate": "Basic realm=\"security\" charset=\"UTF-8\""
}
},
"status": 401
}
3. 해결
elasticsearch-setup-passwords interactive 를 실행 시켜주고 비밀번호를 초기화 해준다.
cd $elasticsearch_home$/bin
./elasticsearch-setup-passwords interactive
Enter password for [elastic]:
Reenter password for [elastic]:
Enter password for [apm_system]:
Reenter password for [apm_system]:
Enter password for [kibana]:
Reenter password for [kibana]:
Enter password for [logstash_system]:
Reenter password for [logstash_system]:
Enter password for [beats_system]:
Reenter password for [beats_system]:
Enter password for [remote_monitoring_user]:
Reenter password for [remote_monitoring_user]:
Changed password for user [apm_system]
Changed password for user [kibana]
Changed password for user [logstash_system]
Changed password for user [beats_system]
Changed password for user [remote_monitoring_user]
Changed password for user [elastic]
'프로그래밍 기타' 카테고리의 다른 글
window telnet 명령어 활성화 및 포트 확인방법 (0) | 2022.08.19 |
---|---|
Blocking(블로킹) vs Non-Blocking (논 블로킹) vs 동기 vs 비동기 (0) | 2022.07.22 |
초간단 curl 명령어를 통해 telegram bot에 메세지 전송 (0) | 2022.07.04 |
크롬 JSON Viewer 플러그인 ( JSON을 편하게 보자 ) (0) | 2022.05.17 |
위로가 되는 말 (0) | 2022.04.18 |
댓글