---------설치
종속성 먼저 설치
yum -y install openssl openssl-devel
yum -y install pcre-devel
nginx 다운로드
wget http:// nginx.org/download/nginx-1.10.0.tar.gz
설치
먼저 추출
tar -zxvf nginx-1.10.0.tar.gz
컴파일
cd nginx- 1.10 .0
./configure --prefix=/usr/local/nginx
make
make install
start
/usr/local/nginx/sbin/nginx -c /usr/ local /nginx/conf/nginx.conf
중지
프로세스 번호를 먼저 확인하세요
ps -ef |grep nginx
root 12901 1 0 11:26 ? 00:00:00 nginx: 마스터 프로세스. /nginx
nobody 12902 12901 0 11:26 ? 00:00:00 nginx: 작업자 프로세스
다시 중지
정상적으로 중지: kill -s QUIT 12901
빠른 중지: kill -s TERM 12901/ kill -s INT 12901
강제 중지: killall nginx
다시 시작
구성 파일이 올바른지 확인합니다.
방법 1: 실행하려면 /usr/local/nginx/sbin/을 입력해야 합니다./ nginx -t
방법 2: /usr/local/nginx/sbin/nginx -t -c /usr/local/nginx/conf/nginx.conf
다시 시작 시작
방법 1: /usr을 입력해야 함 /local/nginx /sbin/ ./nginx -s reload 실행
방법 2: kill -HUP 마스터 이름
nginx+tomcat 환경 빌드
nginx 구성 파일에 다음 구성 추가(간단한 예)
nginx 디렉토리에 설치했습니다:/usr/local/nginx/
user none;
worker_processes 1;
events {
Worker_connections 1024;
}
http {
mime .types 포함;
default_type application/octet-stream;
charset UTF-8;
sendfile on;
access_log off;
error_loglogs/host.error.log crit;
Keepalive_timeout 65;
gzip on;
gzip_min_length 1000;
gzip_comp_level 4;
gzip_types 텍스트/일반 텍스트/css 텍스트/xml 애플리케이션/json 애플리케이션/x-javascript;
open_file_cache max=655350 inactive =20s;
open_file_cache_valid 30s;
open_file_cache_min_uses 2;
#Stop 플래그, 액세스되지 않습니다
#server 192.168.239.134:8080 down;
#백업 machine, all 비백업 머신이 다운된 경우에만 활성화하세요.
#server 192.168.239.134:8080 backup;
upstream tomcats {
fair;
239.135 :8080 Weight=5;
server 192.168.239.136:8080 Weight=2 max_fails=2 failure_timeout=60s;
}
서버 {
Listen 80;
server_name 19 2.168.239.135;
access_loglogs/host.access .log 결합;
위치 ~ .(jsp|jspx|do)$ {
##root /picclife/data0/www; #tomcat의 배포 경로가 내가 변경했습니다
index index.jsp index.jspx index.do;
##proxy_pass http://192.168.239.134:8080; #Tomcat 서비스 주소
proxy_pass http://tomcats;
}
error_page 500 502 503 504 /50x .html;
위치 = /50x.html {
루트 html;
}
}
}
--------- -로드 밸런싱 전략
1 . 없음 폴링 방법(한 번에 한 라운드), 기본값
2. 폴링은 가중치에 따라 변경 가능(기본값은 1), 가중치 값이 높을수록 더 많은 요청이 할당됩니다
3. 사용자의 IP 주소를 기반으로 작업하여 해시 값을 얻고 이를 서버에 바인딩합니다.
사용자의 IP가 변경되지 않은 경우 이 때 가중치는 유효하지 않습니다. 🎜>4. 공정한 타사가 자체 알고리즘에 따라 서버의 로드 상태를 파악하고 요청을 할당합니다
5. url_hash 타사가 요청한 URL을 기반으로 해시 작업을 수행하여 서버를 바인딩합니다
타사 모듈 설치
1. gnosek-nginx-upstream-fair-a18b409.tar.gz를 다운로드합니다
2. tar -zxvf gnosek-nginx-upstream-fair-a18b409.tar.gz를 압축 해제합니다. 3. 구성, nginx
의 압축 해제 디렉터리를 입력합니다./configure --prefix=/usr/local/nginx --add-module=/picclife/soft/nginx-upstream-fair
4. 컴파일, 수행 nginx를 설치하기 전에
make
5. objs 디렉토리를 입력하세요
[root@zhanglw-5 objs]# ls
addon autoconf.err Makefile nginx nginx.8 ngx_auto_config.h ngx_auto_headers .h ngx_modules.c ngx_modules.o src
6. nginx를 교체합니다. 이전에는 nginx가 /usr/local/nginx 디렉터리
cp nginx /usr/local/nginx/sbin/
에 설치되었습니다. 🎜>교체 전 nginx를 중지해야 합니다. 그렇지 않으면 교체할 수 없습니다.
이상에서는 관련 측면을 포함하여 Linux에서의 nginx 설치에 대해 소개했습니다. PHP 튜토리얼에 관심이 있는 친구들에게 도움이 되기를 바랍니다.