CentOS linux에서 tomcat7을 정상적으로 구성
tomcat7을 시작합니다. 액세스 주소는
입니다.192.168.1.207:8080
192.168.1.208:8080
nginx 설치 환경 구성:
다음 명령을 실행합니다:
다음 정보인 경우 나타나면 설치 환경이 성공적으로 구성되었음을 나타냅니다.
nginx 경로 접두사: "/usr/local/nginx"
nginx 바이너리 파일: "/usr/local/nginx/sbin/nginx"
nginx 구성 접두사: "/usr/local/nginx/conf"
nginx 구성 파일: "/usr/local/nginx/conf/nginx.conf"
nginx pid 파일: "/usr/local/nginx/logs/nginx.conf" pid"
nginx 오류 로그 파일: "/usr/local/nginx/logs/error.log"
nginx http 액세스 로그 파일: "/usr/local/nginx/logs/access.log"
nginx http 클라이언트 요청 본문 임시 파일: "client_body_temp"
nginx http 프록시 임시 파일: "proxy_temp"
nginx http fastcgi 임시 파일: "fastcgi_temp"
nginx http uwsgi 임시 파일: "uwsgi_temp"
nginx http scgi 임시 파일: "scgi_temp"
nginx 설치
명령 실행: make && make install
성공적인 설치를 나타내는 다음 메시지가 나타납니다.
test -f '/usr/local/nginx/conf/nginx.conf ' || cp conf/nginx.conf '/usr/local/nginx/conf/nginx.conf'
cp conf/nginx.conf '/usr/local/nginx/conf/nginx. conf.default'
test -d '/usr/local/nginx/logs' || mkdir -p '/usr/local/nginx/logs'
test -d '/usr /local /nginx/logs' || mkdir -p '/usr/local/nginx/logs'
test -d '/usr/local/nginx/html' || cp -R html '/usr/local/nginx'
test -d '/usr/local/nginx/logs' || mkdir -p '/usr/local/nginx/logs '
make[1]: `/web/nginx-1.6.2' 디렉토리 종료
시작: /usr/local/nginx/sbin/nginx
닫기:/usr/local/nginx/sbin/nginx -s 중지
nginx 서비스 다시 시작:/usr/nginx/sbin/nginx -s reload
구성nginx로드 밸런싱
실행 명령: vi /usr/local/nginx/sbin/nginx/conf/nginx.conf
수정됨:
worker_processes 2 ;
이벤트 {
Worker_connections 1024;
}
http {
include mime.types;
default_type application/octet-stream;
sendfile on;
keepalive _timeout 65;
#start
업스트림 192.168.1.208{
#세션 문제 해결
ip_hash;
서버 192.168.1.207:8080 가중치=1;
서버 192.168.1.208:8080 가중치=1;
}
#end
server {
listening 80;
server_name 192.168.1.208;
location / {
root html; #요청은 다음과 같습니다. mysvr
proxy_pass http://192.168.1.208;
proxy_redirect default;
에서 정의한 서버 목록으로 리디렉션됩니다. #The timeout 프록시 서버 연결 시 제한 시간은 75초를 초과할 수 없습니다. 한 서버가 충돌하면 10초 후에 다른 서버로 전달됩니다.
Proxy_connect_timeout 10;
} error_page 500 502 503 504 /50x.html;
위치 = /50x.html {
루트 html ;
}
}
}
192.168.1.208/application name을 방문하세요.
위 내용은 관련 내용을 포함하여 nginx + tomcat7 구성 클러스터 환경을 소개하고 있어 PHP 튜토리얼에 관심이 있는 친구들에게 도움이 되기를 바랍니다.