본문 바로가기
728x90
반응형

전체 글163

Elasticsearch health yellow 문제 분석 health yellow 문제 elasticsearch health가 yellow로 나온다. current.health="YELLOW" message="Cluster health status changed from [RED] to [YELLOW] (reason: [shards started [[.apm-source-map][0]]])." previous.health="RED" reason="shards started [[.apm-source-map][0]]" 문제를 정확히 알기 위해 아래로 들어가보자. https://localhost:9200/_cluster/health?pretty 그럼 아래처럼 뜨는데, 할당되지 않은 샤드가 2개로 나온다. 정확하게 알기 위해, 아래를 주소에 입력하면, https://.. 2023. 6. 29.
kibana Unable to retrieve version information 오류 Unable to retrive version information 오류 elasticsearch를 실행하고, kibana를 실행하려고 했는데 아래와 같은 오류가 발생한다. stackoverflow와 elasticsearch 커뮤니티에서 찾아본 결과. 아마 kibana configure이 안되었을 것이라며, 아래와 같은 해결책을 제시했다. enrollment-token을 사용한 security configuration 방법 cmd 창에 아래와 같이 입력해보았다. kibana-setup --enrollment-token When you start Elasticsearch for the first time, the following security configuration occurs automaticall.. 2023. 6. 29.
HTTPS, SSL, TLS, CA 개념 간단 정리 HTTPS(HyperText Transfer Protocol Secure) HTTP 통신에서 보안을 강화한 보안 프로토콜이라고 할 수 있다. HTTPS는 웹 브라우저와 웹 서버 간의 통신을 암호화하여 보안성을 강화하고 데이터의 기밀성, 무결성, 인증을 보장한다. HTTPS는 기본적으로 HTTP 프로토콜 위에 SSL(Secure Sockets Layer) 또는 TLS(Transport Layer Security) 프로토콜을 사용하여 암호화된 연결을 수립하고, 이를 통해 클라이언트와 서버 간의 데이터 전송이 안전하게 이루어지게 된다. HTTPS의 주요 특징 암호화된 연결 HTTPS는 클라이언트와 서버 간의 통신을 암호화하여 제3자가 데이터를 엿볼 수 없도록 보호한다. SSL/TLS 프로토콜을 사용하여 데이터.. 2023. 6. 28.
Windows에서 Elasticsearch, Kibana 설치하기(8.7.1버전) 엘라스틱서치, 키바나 다운로드 https://www.elastic.co/kr/downloads/elasticsearch Download Elasticsearch Download Elasticsearch or the complete Elastic Stack (formerly ELK stack) for free and start searching and analyzing in minutes with Elastic. www.elastic.co https://www.elastic.co/kr/downloads/kibana Download Kibana Free | Get Started Now Download Kibana or the complete Elastic Stack (formerly ELK stack) fo.. 2023. 6. 28.
Spring boot 채팅 구현 #5 RabbitMQ 기반 메시지 큐 구현 RabbitMQ 설치 우선 RabbitMQ를 설치해보자. https://www.rabbitmq.com/download.html Downloading and Installing RabbitMQ — RabbitMQ Downloading and Installing RabbitMQ The latest release of RabbitMQ is 3.12.0. See change log for release notes. See RabbitMQ support timeline to find out what release series are supported. Experimenting with RabbitMQ on your workstation? Try the community www.rabbitmq.com 윈도우 사용자.. 2023. 6. 23.
Codility Exercise4 First Unique 코드 from collections import Counter def solution(A): my_cnt = Counter(A) for i in my_cnt.keys(): if my_cnt[i] == 1: return i return -1 StrSymmetryPoint 코드 def solution(S): if len(S) == 1: return 0 if len(S) % 2 == 0: return -1 for i in range(len(S) // 2): if S[i] != S[-(i+1)]: return -1 return len(S) // 2 return cnt TreeHeight 코드 from extratypes import Tree # library with types used .. 2023. 6. 22.
728x90
반응형