Linux Nginx 설치 설정 (Pcre 설치 설정)

1806 단어 Nginx
Nginx 설치:
1. PCRE 설치
PCRE 는 Nginx 가 Rewrite 기능 을 지원 하도록 하 는 역할 을 합 니 다.
1. nginx 의 gzip 모듈 은 zlib 라 이브 러 리 가 필요 합 니 다. rewrite 모듈 은 pcre 라 이브 러 리 가 필요 합 니 다. ssl 모듈 은 openssl 라 이브 러 리 가 필요 합 니 다. 프로그램 이 설치 되 어 있 는 지 확인 하 십시오.
rpm -q pcre
rpm -q openssl
rpm -q zlib
rpm -q nginx

2, 다운로드 PCRE 설치 패키지, 다운로드 주소:https://ftp.pcre.org/pub/pcre/
3. 압축 해제 설치 팩
tar -zxvf pcre-8.42.tar.gz
4. 설치 패키지 디 렉 터 리 에 들 어가 기
cd pcre-8.42
5. 컴 파일 설치
./configure
make && make install
6. pcre 버 전 보기
pcre-config --version

Nginx 설치
1. Nginx 다운로드, 다운로드 주소:http://nginx.org/en/download.html
2. 압축 해제 설치 팩
tar -zxvf nginx-1.8.1.tar.gz

3. 설치 패키지 디 렉 터 리 에 들 어가 기
cd nginx-1.8.1
4. 컴 파일 설치 (설치 디 렉 터 리 / usr / local / nginx /)
./configure --prefix=/usr/local/nginx --with-http_stub_status_module --with-http_ssl_module
make
make install
5. 설치 성공 여부 확인
cd  /usr/local/nginx/sbin
./nginx -t
아래 표시, 설치 성공
nginx: the configuration file /usr/local/nginx/conf/nginx.conf syntax is ok
nginx: configuration file /usr/local/nginx/conf/nginx.conf test is successful

6. nginx 버 전 보기
/usr/local/nginx/sbin/nginx -v

7. Nginx 시작
    방법 1:
/usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf
    방법 2:
cd /usr/local/nginx/sbin
./nginx
8. Nginx 정지
pkill -9 nginx

9. 테스트 포트
netstat -na | grep 80

좋은 웹페이지 즐겨찾기