일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
- ios
- 클라우드
- devops
- 프로세스
- Python
- 컨테이너
- 운영체제
- centOS
- 네트워크
- NGINX
- 도커 이미지
- kubernetes
- centOS7
- C++
- k8s
- 인프라
- 데브옵스
- 도커
- 부스트코스
- 쿠버네티스
- 도커 명령어
- AWS
- 도커 컨테이너
- swift 클로저
- os
- docker
- Swift
- 리눅스
- boj
- linux
- Today
- Total
목록전체 글 (153)
귀염둥이의 메모
https://go.dev/wiki/CommonMistakes#using-goroutines-on-loop-iterator-variables
openssl s_client -showcerts -connect {VIP}:443 -servername '{DOMAIN}' /dev/null -legacy_renegotiation | tee >(openssl x509 -noout -serial -dates) | grep -E "CN|serial|GMT" Subject, Issuer, Authority Information Access 정보 일련 번호(serial), 유효 기간(dates) 정보
https://discuss.elastic.co/t/filebeat-and-glibc-errors-on-ubuntu-22-04/306653 Filebeat and GLIBC Errors on Ubuntu 22.04 Hello, We just deployed filebeat both Ubuntu 22.04 server and Ubuntu 22.04 desktop. However, we cannot be able to get Filebeat connect to Elasticsearch. Both versions of Filebeat and ES is 7.10.1; When you run; filebeat -e You get errors related to GLIBC; discuss.elastic.co htt..
https://www.nginx.com/blog/http-2-rapid-reset-attack-impacting-f5-nginx-products/ HTTP/2 Rapid Reset Attack Impacting F5 NGINX Products - NGINX Update your NGINX configuration to mitigate a possible denial-of-service attack implemented on the server-side portion of the HTTP/2 specification. www.nginx.com keepalive_requests should be kept at the default setting of 1000 requests 클라이언트가 연결당 최대 1000..
Enables or disables the use of “just-in-time compilation” (PCRE JIT) for the regular expressions known by the time of configuration parsing. PCRE JIT can speed up processing of regular expressions significantly. Syntax: pcre_jit on | off; Default: pcre_jit off; Context: main
The ngx_http_gzip_static_module module allows sending precompressed files with the “.gz” filename extension instead of regular files. - 정적파일을 gzip 압축으로 제공하는 기능 - 요청할때마다 압축하지 않고, 미리 압축해서 제공 - 설치시 configure 옵션에 --with-http_gzip_static_module 추가필요 - nginx 설정에서 gzip_static on; Syntax: gzip_static on | off | always; Default: gzip_static off; Context: http, server, location
SLB(Server Load Balancer) 서버에 전달되는 부하를 조절. 보통 하나의 서버가 받는 부하를 여러 대의 서버로 분산시키는 역할. H/C(Health-Check) 기능으로 SLB에 연결된 서버에 문제가 발생한 경우 자동으로 제외. 부하 분산, 서버 다중화를 위해 사용되며 SLB 자체도 단일 구성이 아닌 다중화되기도 한다. 기존 active SLB 장비에 물리적 장애 or 네트워크 장애가 발생하여 heartbeat 통신이 끊기면, 기존 stand-by가 active 역할. H/C(Health-Check) 기능으로 SLB에 연결된 서버에 문제가 발생한 경우 자동으로 제외.
멀티코어(Multi-core) - 하나의 CPU 내부에 두 개 이상의 독립적인 core가 있는 기술. - 하나의 core 처리하는 작업을 여러 개의 core가 분담하여 처리 가능. 멀티프로세서(Multi-processor) - 여러 개의 Processor(=CPU)를 사용하는 것. - 여러 개의 CPU가 각각 독립적으로 작업을 처리. 멀티코어프로세서(Multi-core processor) - 멀티코어 + 멀티프로세스 - 하나의 CPU 내부에 두개 이상의 core가 있고, 이러한 멀티코어 CPU가 여러 개 존재.
UNASSIGNED 상태인 shard의 원인을 explain API를 사용하여 확인할 수 있다. # explain API curl -XGET "localhost:9200/_cluster/allocation/explain?pretty" "node does not match index setting [index.routing.allocation.require] filters [box_type:\"hot\"]" box_type 설정이 잘 못된 경우이다. hot-warm 구조를 사용하지 않지만, 잘못된 template 설정으로 인하여 box_type: hot 으로 설정된 경우가 있다. 문제가 있는 인덱스의 "index.routing.allocation.require.box_type": null 으로 설정하여 일..