목록전체 글 (64)
+1-1+1-1+1-1+1-1...
테스트 환경 : RH Linux 7.3 RootCA (Self Signed) 인증서 서버 : TEST-MGMT 인증서 (Signed by RootCA) 서버 : TEST-WEB01 1. self-signed root CA 인증서 발급 (TEST-MGMT) 1) CA(Selfsigned) 인증서 생성을 위한 Private Key 생성 [root@testlab ~]# openssl genrsa -des3 -out localCA.key 2048 Generating RSA private key, 2048 bit long modulus .................................................................+++ .................................
exhibitlove.tistory.com/28 SSL 인증서 파일 포맷 및 용어설명 SSL 인증서 파일 포맷 종류 - crt, cer, csr, pem, der, pfx, p12, jks, key 확장자는 그 파일의 특성이 무엇인지 쉽게 알아 보기 위해서 붙이는 것이지만, 바이너리 이진 파일에 .txt 확장자를 붙일수도 있는. exhibitlove.tistory.com

설치 환경 : Centos 7.X Master 서버 > 192.168.60.17 k8s-master Node 1 서버 > 192.168.60.18 k8s-node1 Node 2 서버 > 192.168.60.19 k8s-node2 1. 사전 환경 구성 1) SELinux 설정 쿠버네티스가 Pod Network에 필요한 호스트 파일 시스템에 액세스가 가능하도록 설정 [root@localhost ~]# setenforce 0 [root@localhost ~]# sed -i 's/^SELINUX=enforcing$/SELINUX=permissive/' /etc/selinux/config [root@localhost ~]reboot [root@localhost ~]# sestatus SELinux status: ..
NT만 하던 나에게는 완전 신세계임... 설치하는데 4시간 걸렸는데.. 데쉬보드에서 오류남.....ㅜㅜ configmaps is forbidden: User "system:serviceaccount:kube-system:kubernetes-dashboard" cannot list resource "configmaps" in API group "" in the namespace "default": RBAC: clusterrole.rbac.authorization.k8s.io "Cluster-admin" not foundclose warningpersistentvolumeclaims is forbidden: User "system:serviceaccount:kube-system:kubernetes-dashb..
리눅스 awk 명령어 사용법. (Linux awk command) - 리눅스 파일 텍스트 데이터 검사, 조작, 출력. :: 개발자를 위한 레시피 (tistory.com) 리눅스 awk 명령어 사용법. (Linux awk command) - 리눅스 파일 텍스트 데이터 검사, 조작, 출력. 1. awk 명령어. 대부분의 리눅스 명령들이, 그 명령의 이름만으로 대략적인 기능이 예상되는 것과 다르게, awk 명령은 이름에 그 기능을 의미하는 단어나 약어가 포함되어 있지 않습니다. awk는 최 recipes4dev.tistory.com
heum-story.tistory.com/142 [리눅스] yum $releasever 변경하는 방법 yum repository에서 $releasever 변수를 사용하는데 잘 못 설정되어 아래와 같은 에러가 발생하는 경우가 있는데요 /etc/yum/vars/releasever 생성 또는 변경하여 조치할 수 있습니다. ERROR : https://download.p.. heum-story.tistory.com
jhnyang.tistory.com/287 [리눅스/유닉스] 유용 명령어 sed를 살펴보자! sed 명령어 사용법과 예시, 패턴 스페이스와 홀드 스 [리눅스 유닉스 완전정복 목차] 안녕하세요. 주인장 양햄찌입니다. 오늘은 sed 명령어에 대해 살펴보려고 해요. SED 명령어 알기, SED는 무슨 명령어야? vi편집기 아시죵~ sed 명령어도 vi편집기처럼 jhnyang.tistory.com Case 1) 파일의 N행 아래에 있는 특정 문자를 원하는 문자로 바꾸고 싶을때 예제 파일) > cat testfile AAA BBB CCC AAA BBB CCC AAA BBB CCC AAA BBB CCC 3행 아래부터 끝($)부분 까지 AAA를 'DDD'로 바꿨을때 파일 내용을 확인함 - 실제 반영되지 않음 > se..