Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- java
- 리눅스 설치
- 리눅스
- oracle error
- 저장소
- 유닉스
- bootjar 상속받기
- NFS 구축
- 서버분산
- iftables
- jar 상속받기
- nfs
- 오라클 에러 정리
- 자바 프로그래밍
- 스프링부트 상속
- nexus3
- 오라클
- 인텔리제이
- HTTP
- 사설 저장소
- Nexus 3 Repository
- oracle
- vi명령어
- l4 구축하기
- javadoc 사용법
- vm
- oracle loop
- 외부 프로젝트 상속
- 오라클 에러
- 가상머신
Archives
- Today
- Total
목록l4 구축하기 (1)
빽기의 코딩공부Story
L4 구축하기
1. haproxy 설치yum install haproxy 2. 컨피그 설정 추가[root@linux ~]# vi /etc/haproxy/haproxy.cfg# L4 로드 밸런서 설정 (포트 80으로 들어온 요청을 backend backend_servers로 전달)frontend l4_loadbalancer bind *:80 default_backend backend_serversbackend backend_servers balance roundrobin # 부하 분산 방식 (라운드 로빈) server web1 localhost:80 check server web2 localhost2:80 check3. haproxy 재 실행systemctl restart haprox4..
[NETWORK]
2025. 3. 21. 14:59