본문 바로가기

전체 글125

2. cka 시험 정리 - etcd backup & restore (1)(2) [etcd backup & restore (1)] ETCD : 분산 key:value 형태의 데이터 스토리지. 쿠버네티스 클러스터의 정보를 저장(memory)해서 사용. 모든 etcd 데이터는 etcd 데이터베이스 파일에 보관(/var/lib/etcd) 보통 HA 환경으로 3개 정도 운영함.(master도 3개) static pod 형태로 동작. ETCD Restore : snapshot으로 저장한 database 파일을 동작중인 etcd에 적용하여 snapshot 생성시점으로 되돌리기 1) snapshot 파일을 데이터베이스 파일로 복원 2) 동작중인 etcd pod의 구성정보를 복원된 데이터베이스 위치로 수정 적용 [etcd backup & restore (2)] 현재 etcd 버전 확인) etcdc.. 2025. 4. 2.
1. cka 시험 정리 - 쿠버네티스 기본 사용 [쿠버네티스 기본 사용]  현재 context 확인)kubectl config current-context  context 이동)kubectl config use-context k8s kubectl get nodes | cut -d' ' -f1 | grep -v NAME kubectl get nodes | grep -i -w ready | cut -d' ' -f1  cluster 정보 확인)kubectl cluster-info cni 정보를 확인하시 위해서는 해당하는 master 장비로 이동해야 함 ssh k8s-master ls /etc/cni/net.d/ ps -ef | grep cni 2025. 4. 2.
46. 14.1.2 remote console About WebLogic Remote Console :: WebLogic Remote ConsoleWebLogic Remote Console Oracle WebLogic Remote Console is a graphical user interface that administers Oracle WebLogic Server domains. WebLogic Remote Console relies on REST APIs to provide flexibility, enabling it to connect to domains in varied environmenoracle.github.io  weblogic 14.1.2 버전부터는 기존의 웹 콘솔이 사라지고 remote console이 새로 생김 두 가지 방식으로.. 2025. 1. 20.
Java cacerts 인증서 설정 tomcat api서버에서 다음과 같은 에러 발생 Caused by: javax.net.ssl.SSLHandshakeException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target => java의 경우 자체 인증서 저장소를 가지고 있는데 여기에 해당 https 사이트의 인증 기관이 등록되지 않은 경우 위와 같은 에러 발생  !! 기존 경로 cacerts 백업!! jdk 백업!! tomcat이 아닌 apache의 crt 인증서 사용 1. 인증서 조회/usr/lib/jvm/java-11-ope.. 2025. 1. 13.
8. Nginx 모듈 configure 명령어로 설치시 default로 설치되는 것을 제외한 나머지 모듈은 --with option으로 설치 필요 Modules enabled by default (configure 명령어)설치 옵션설명--without-http_charset_moduleCharset 모듈을 비활성화하여 웹 페이지를 다시 인코딩 함--without-http_gzip_moduleGzip 압축 모듈 비활성화--without-http_ssi_module서버 측 포함 모듈을 사용 불가능하게 함--without-http_userid_module쿠키를 통해 사용자 ID를 제공하는 사용자 ID 모듈을 비활성화--without-http_access_moduleIP 주소 범위에 대한 액세스 구성을 허용하는 Acess 모듈을 비.. 2024. 11. 19.
7. weblogic 연동 tomcat 연동과 동일보통 웹로직과 웹서버 연동시 oracle에서 제공하는 플러그인이 필요하지만 nginx는 별도의 플러그인이 필요하지 않음 설정 예시)upstream weblogic{ ip_hash; server 192.168.56.105:7002; server 192.168.56.105:7003; } server { listen 8080; server_name 192.168.56.105; #charset koi8-r; #access_log logs/host.access.log main; location /webapp/ { index index.html .. 2024. 11. 19.
728x90