- 3. HaProxy를 이용한 웹 서버 이중화2023년 02월 14일 16시 36분 43초에 업로드 된 글입니다.작성자: 각수짱728x90반응형SMALL
2023.02.14 - [서버 관리] - XX. 웹 서버와 웹 애플리케이션과 DB 서버 연동
이이서진행
Haproxy 설정
방화벽 끄기
systemctl stop firewalld systemctl disable firewalld setenforce 0
설치
yum install -y haproxy
설정
vi /etc/haproxy/haproxy.cfg
default 설정은 놔두고 그 밑에 다 지운 후에 아래 내용 추가
listen stats bind :9000 stats enable stats realm Haproxy\ Statistics stats uri /haproxy_stats listen web-lb bind 0.0.0.0:80 mode http balance roundrobin option httpchk GET /[웹서버1에 있는 html파일] server web1 [아파치1 IP]:80 check server web2 [아파치2 IP]:80 check
저장 후 종료
실행
systmctl restart haproxy
테스트
http://[Haproxy ip주소]:9000/haproxy_stats 접속
web1 web2 가 정상 작동되는것을 확인하면 된다
728x90반응형LIST'서버 관리 > WEB 서버' 카테고리의 다른 글
2. 웹 애플리케이션 서버 여러 대 사용 (0) 2023.02.14 1. 웹 서버와 웹 애플리케이션과 DB 서버 연동 (0) 2023.02.14 이전글이 없습니다.댓글