본문 바로가기
반응형

config10

HAProxy Frontend Session Utilization 증가 현상 HAProxy Frontend의 Session Utilization이 지속적으로 증가되는 현상.  원인?HAProxy에서 Frontend의 Session utilization이 계속 올라가는 경우, 이는 클라이언트의 요청 세션을 처리하는 동안 리소스를 효율적으로 관리하지 못하고 있다는 신호 일 수 있습니다.  기대하는 현상요청 세션이 끝나면 자체적으로 정리가 되어 Session Utilization이 요청수와 비례하게 증감되는 현상을 기대합니다.  조치방안각 설정을 점검하고 조정하여 최적화가 필요합니다.  * 세션 제한Frontend가 세분화 되어 있다면, 최대 연결 수를 제한하여 다른 Frontend에 영향을 주지 않도록 설정이는 임시조치 일뿐, 내가 기대하는 해결방안은 아닙니다. Frontend my.. 2025. 4. 1.
Terraform CLI & Configuration File Terraform CLI(Command)의 사용법은 아래와 같습니다.  # Terraform [global Options] [args]Usage: terraform [global options]  [args] The available commands for execution are listed below. The primary workflow commands are given first, followed by less common or more advanced commands. Main commands:   init          Prepare your working directory for other commands   validate      Check whether the configuratio.. 2024. 10. 7.
HAProxy nbproc 설정 적용 HAProxy 설정 튜닝 Number of processes HAProxy는 별도의 설정을 하지 않으면 1개의 Process로 실행됩니다. (Default 1 Process) 만약 HAProxy가 기동되고 있는 서버가 mutiple Core 서버라고 한다면, 높은 부하가 주어질때, 1개의 Core만 열심히 사용중일 것입니다. 따라서, HAProxy 서버의 여러 Core를 적절히 사용하도록 하려면, 실행되는 Process의 수를 늘려주어야 합니다. 만약 HAProxy 서버가 4Core 시스템에서 동작중이라면, 아래와 같이 설정하여 Process의 수를 늘려주는 것이 좋습니다. global nbproc 4 cpu-map 1 1 cpu-map 2 2 cpu-map 3 3 cpu-map 4 4 (...) 일반적.. 2023. 8. 23.
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.
CentOS NFS Server 설치 및 설정 Kubernetes PV로 사용하기 위해서 , NFS구성을 합니다!! NFS 서버 패키지 설치 # yum install nfs-utils rpc-bind (nfs-utils 만 설치하려고 해도, rpc-bind가 종속성이 있어서 같이 설치됩니다.) [NFS 서버 실행] # systemctl start nfs-server [NFS 설정] 공유할 디렉토리 생성 # mkdir /shared 공유 디렉토리 권한 설정 # chmod 756 /shared NFS Server exports 옵션 설정 #vi /etc/exports 모두에게 읽기쓰기 권한 부여 /shared *(rw, no_root_squash) 특정 IP대역 읽기쓰기 권한 부여 /shared 10.1.1.* (rw, no_root_squash) NF.. 2022. 5. 17.
keepalived 설정 파일 옵션 정리 [keepalived.conf.sample] ! Configuration File for keepalived global_defs { notification_email { acassen } notification_email_from Alexandre.Cassen@firewall.loc smtp_server 192.168.200.1 smtp_connect_timeout 30 router_id LVS_DEVEL } vrrp_instance VI_1 { state MASTER interface eth0 virtual_router_id 50 nopreempt priority 100 advert_int 1 authentication { auth_type PASS auth_pass 1111 } virtual_ipa.. 2022. 1. 29.
반응형