CentOS 에서 nginx 를 어떻게 원본 으로 컴 파일 합 니까?

1739 단어 Nginx
1. 라 이브 러 리 파일 설치
yum -y install make zlib zlib-devel gcc-c++ libtool  openssl openssl-devel

2. 설치 pcre - 8.35 1, pcre - 8.35 다운로드 주소https://nchc.dl.sourceforge.net/project/pcre/pcre/8.35/pcre-8.35.tar.gz 2. 압축 풀기 tar -zxvf pcre-8.35.tar.gz 3. 패키지 디 렉 터 리 에 들 어가 기 cd pcre-8.35 4. 컴 파일 설치
   ./configure
   make && make install

3. nginx 1 설치, nginx 소스 코드 다운로드http://nginx.org/en/download.html 2. 압축 풀기 tar zxvf nginx-1.17.8.tar.gz 3. 패키지 디 렉 터 리 에 들 어가 기 cd nginx-1.17.8.tar.gz 4. 컴 파일 설치
./configure --prefix=/usr/local/software/nginx --with-http_stub_status_module --with-http_ssl_module --with-stream --with-pcre=/usr/local/software/pcre-8.35/pcre-8.35
  make
  make install

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

6. nginx 시작
/usr/local/software/nginx/sbin/nginx

7. nginx 기타 명령
/usr/local/software/nginx/sbin/nginx -s reload            #         
/usr/local/software/nginx/sbin/nginx -s reopen            #    Nginx
/usr/local/software/nginx/sbin/nginx -s stop              #    Nginx

좋은 웹페이지 즐겨찾기