분류 전체보기109 사설 인증서 발급하기 1. 흐름 이해1. CA 개인키 생성2. CA 인증서 생성3. 서버 개인키 생성4. 서버 CSR 생성5. CA가 CSR을 서명해서 서버 인증서 발급6. 서버 인증서 + CA 인증서를 묶어 fullchain 생성7. nginx/apache 등에 적용8. 클라이언트에 ca.crt를 신뢰 저장소로 배포 2. 사설 CA 만들기2.1 CA 개인키 생성ca.key는 인증기관의 비밀키openssl genrsa -out ca.key 4096 2.2 CA 인증서 생성자기 자신의 인증서를 생성openssl req -x509 -new -key ca.key -sha256 -days 3650 -out ca.crtCountry Name (2 letter code) [XX]: KRState or Province Name (full.. 2026. 3. 20. 쿠버네티스 HPA 연습 메트릭 서버 설치https://github.com/kubernetes-sigs/metrics-serverwget https://github.com/kubernetes-sigs/metrics-server/releases/latest/download/components.yamlvi components.yamlapiVersion: apps/v1kind: Deploymentmetadata: labels: k8s-app: metrics-server name: metrics-server namespace: kube-systemspec:... spec: containers: - args: - --cert-dir=/tmp - --secure-port=10250.. 2024. 12. 9. Java Heap Dump 분석 #1 - IBM HeapAnalyzer IBM HeapAnalyzer현재 IBM HeapAnalyzer 의 경우 아래와 같이 Eclipse Memory Analyzer Tool (MAT) 사용을 권고 하고 있다.그래도 경우에 따라 사용이 필요한 경우가 있을지도 모르니 여기에서는 설치 및 실행하는 방법 정도만 알아 보도록 하자Note: IBM HeapAnalyzer has no new development and therefore, in general, we recommend using the Eclipse Memory Analyzer Tool (MAT) instead which is open source, has active development, and has a similar feature set (leak suspects, etc.). .. 2024. 12. 3. ssh 패스워드 없이 로그인 하기 ssh 공개 키 인증 방식 사용키 쌍 생성ssh-keygen -t rsa 명령어를 이용해 개인 키와 공개 키를 생성 - id_rsa : 개인 키 (~/.ssh/id_rsa) - id_rsa.pub : 공개 키 (~/.ssh/id_rsa.pub)[root@localhost ~]# ssh-keygen -t rsaGenerating public/private rsa key pair.Enter file in which to save the key (/root/.ssh/id_rsa): Enter passphrase (empty for no passphrase): Enter same passphrase again: Your identification has been saved in /root/.ssh/id_rsaY.. 2024. 11. 30. 이전 1 2 3 4 5 ··· 28 다음