로드 밸런싱1 nginx load balancer 구축기 - Cent OS nginx 를 통하여 웹서버 로드 밸런싱을 구축하여보았다. 아래와 같이 서버가 구성되어있는 경우이다. 서버#1 서버#2 서버#3 IIS 포트 80 IIS 포트 80 nginx 포트 80 nginx 를 사용하여 collectd 연동외에는 오로지 로드 밸런서의 역할만 수행하도록 설정을 해보았다. #vi /etc/nginx/nginx.conf user nginx; worker_processes 4; -> CPU 코어 개수만큼 설정 worker_cpu_affinity 0001 0010 0100 1000; -> 상기 설정에 맞춰... error_log /var/log/nginx/error.log warn; pid /var/run/nginx.pid; events { worker_connections 1024; } .. 2013. 5. 28. 이전 1 다음