728x90
반응형

TLS 3

TLS 지원 버전 체크 방법

특정 서비스를 호출할 때 해당 서비스에서어떤 버전의 TLS를 지원하냐에 따라 개발을 달리해야 할 때가 있다.특정 서비스에서 TLS 지원이 가능한 범위를 확인하기 위해선 아래 명령어를 통해 확인이 가능하다.#TLS 1.0 확인openssl s_client -connect {domain}:{port} -tls1#TLS 1.1 확인openssl s_client -connect {domain}:{port} -tls1_1#TLS 1.2 확인openssl s_client -connect {domain}:{port} -tls1_2#TLS 1.3 확인openssl s_client -connect {domain}:{port} -tls1_3 호출했을 때 결과값을 통해서 지원 가능한 버전 확인이 가능하다.

Linux 2026.02.07

kibana Alerts and Actions 기능 사용하기 - 1

Alerts and Actions이란 특정 조건에 해당되는 경우 알림 메시지를 보내는 기능이다. Management > Stack Management를 클릭하면 Alerts and Insights > Alerts and Actions라는 부분이 있다. (elastic 공식 홈페이지를 보면 kibana v7.7부터 해당 기능이 보인다. 그 이하 버전은 아예 기능이 없는 것 같다 kibana v7.5를 깔아봤는데 아예 "Alerts and Insights" 부분이 없었다.) https://www.elastic.co/guide/en/kibana/7.7/alerting-getting-started.html 하지만 해당 부분을 처음 클릭하면 아래와 같은 메시지가 떠있을 것이다. 해결 방법은 간단하다. kibana..

Kibana 2023.07.19
728x90
반응형