본문 바로가기
반응형

CHECK8

Linux 오픈 가능한 파일 수 설정 및 확인 [최대 오픈 파일 수]최대 오픈 파일 수를 확인 할때는 Max file과 file-max를 통해 확인 할 수 있습니다.  Max files(nofile)는 "한 사용자가 열 수 있는 최대 파일 디스크립터 수"입니다. #ulimit -n File-max는 "시스템 전체에서 동시에 열 수 있는 최대 파일 디스크립터 수" 입니다. # cat /proc/sys/fs/file-max# sysctl -a | grep file-max위의 명령을 통해 확인할 수 있습니다.  만약 위의 값이 너무 작다면 "Too many open files"에러를 받을 수 있습니다.   조치방안Max File(nofile)일시적 조치 : #ulimit -n 4096영구적 조치 : #vi /etc/security/limits.confUs.. 2024. 6. 2.
RockyOS IPv6 Disable 방법 IPv6 사용여부 Check 방법방법1) /sys/module/ipv6/parameters/disable 값을 확인Enable = 0 / disable = 1  방법2) Sysctl에서 IPv6 사용하는지 Checksysctl -a 2>/dev/null | grep disable_ipv6IPv6 enable = 0 / disable = 1 방법3)  Check IPv6 address is AssignedIf IPv6 is in disabled state then get an empty output 방법4)  Check IPv6 socket using netstat ---영구적은 IPv6 Disable 하기(Permanently)# vi /etc/default/grub마지막 라인에 추가GRUB_CMDLIN.. 2024. 5. 30.
RedisClusterNode Validate that the Redis URI are equal when comparing nodes [이슈 현상] Redis Cluster의 Node IP가 변경되어도, RoundRobinSocketAddressSupplier는 변경된 Node IP로 새로고침을 하지 않고, 이전의 IP로 계속 연결을 시도합니다. [환경] Lettuce 버전 : 5.1.8 버전 Redis 버전 : 5.0.5 Kubernetes에서 6개의 Pod로 Redis Cluster를 구축 Statefulset을 통해서 Redis-cluster 배포 Redis Pod중 일부가 재시작되면서, Redis의 NodeID는 같지만, IP가 변경됨 Redis Cluster는 깨지지 않음. Lettuce에서는 Redis Pod의 이전IP를 사용하여 연결을 시도함. [예상되는 동작] 노드의 IP가 변경되면, 변경된IP를 Catch 하여 새로운 .. 2023. 9. 4.
Docker Proxy Setting For docker sudo mkdir -p /etc/systemd/system/docker.service.d create a file /etc/systemd/system/docker.service.d/http-proxy.conf cat /etc/systemd/system/docker.service.d/http-proxy.conf [Service] Environment=”HTTP_PROXY=http://:" Environment=”HTTPS_PROXY=http://:" Restart the docker daemon systemctl daemon-reload systemctl restart docker 적용된 결과 확인 $ systemctl show --property=Environment docker 2023. 9. 3.
Testing Your HAProxy Config For the impatient, here’s a simple command to test a configuration file: $ haproxy -f /path/to/haproxy.cfg -c The flag '-c', enables “check mode” and is the flag that tells HAProxy to test, without actually starting or restarting HAProxy Testing a Running Proxy’s Config Testing a throwaway config is one thing, but when you make a change to a running service’s configuration file, how should you t.. 2023. 8. 10.
JFrog Artifactory - Router UNHEALTHY 조치 Artifactory 서비스 상태확인하기 # curl -s http://localhost:8082/router/api/v1/system/health 이슈사항 라우터 서비스 UNHEALTHY Ipv6로 통신시도를 하려다 invalid URL 오류 발생. 조치사항 Artifactory에서 ipv6 통신 사용하지 않기 방법1 참고사항 : https://www.jfrog.com/jira/browse/RTFACT-26904 본인의 경우, ip를 직접 ipv4형태로 입력하여도, 여전히 라우터에 UNHEALTHY 상태였음. 방법2 OS에서 ipv6 Disabled 하기 # vi /etc/sysctl.conf OS에서 ipv6를 사용하지 않도록 한다면, 위의 방법1을 적용하지 않아도 됨. 해결완료 2022. 5. 16.
반응형