세션 어피니티 고정
세션 스티키니스
로그인 세션 정보
더보기
# haproxy session stickiness
root@lb:~# vi /etc/haproxy/haproxy.cfg
backend backend_webserver
balance roundrobin
cookie SERVERID insert indirect nocache
server web1 192.168.200.11:80 check cookie web1
server web2 192.168.200.12:80 check cookie web2
root@lb:~# systemctl restart haproxy
https://www.haproxy.com/documentation/hapee/latest/onepage/#balance
세션이 가장 적은쪽으로 연결 least connection
같은 출발지 ip는 같은 server -세션 고정 source
'클라우드 > 도커(Docker)' 카테고리의 다른 글
컨테이너 Container 개념 (0) | 2021.06.30 |
---|---|
가상화 Virtualization 개념 (0) | 2021.06.30 |
Wordpress 인프라 구성 (0) | 2021.06.28 |
iSCSI(아이스카시) (0) | 2021.06.28 |
Vagrant 장치 추가 (0) | 2021.06.28 |