nginx는 C 언어로 개발되었으며, 이 튜토리얼에서는 Centos7을 설치 환경으로 사용하는 것을 권장합니다.
1.2 PCRE
참고: pcre-devel은 pcre를 사용하여 개발된 보조 개발 라이브러리입니다. nginx에도 이 라이브러리가 필요합니다.
1.3 zlib
1.4 openssl
2. 컴파일 및 설치 2.1 공식 홈페이지 다운로드
실제로 nginx-1.10.1 버전에서는 관련 사항을 구성할 필요가 없으며 기본값이면 됩니다. 물론 디렉토리를 직접 구성하려는 경우에도 가능합니다.
tar -zxvf nginx-1.12.1.tar.gz cd nginx-1.12.12. 구성 사용자 정의(권장하지 않음)
참고:
임시 파일 디렉터리를 /var/temp/nginx로 지정하세요. /var에 설정합니다. temp 및 nginx 디렉터리 생성(/var/temp/nginx)
./configure3. 컴파일 및 설치
./configure \--prefix=/usr/local/nginx \--conf-path=/usr/local/nginx/conf/nginx.conf \--pid-path=/usr/local/nginx/conf/nginx.pid \--lock-path=/var/lock/nginx.lock \--error-log-path=/var/log/nginx/error.log \--http-log-path=/var/log/nginx/access.log \--with-http_gzip_static_module \--http-client-body-temp-path=/var/temp/nginx/client \--http-proxy-temp-path=/var/temp/nginx/proxy \--http-fastcgi-temp-path=/var/temp/nginx/fastcgi \--http-uwsgi-temp-path=/var/temp/nginx/uwsgi \--http-scgi-temp-path=/var/temp/nginx/scgi컴파일 및 설치가 완료되면 설치 경로를 볼 수 있습니다. nginx:
make make install
whereis nginx5 nginx 프로세스 쿼리
cd /usr/local/nginx/sbin/./nginx ./nginx -s stop ./nginx -s quit ./nginx -s reload ./nginx -s quit:此方式停止步骤是待nginx进程处理任务完毕进行停止。 ./nginx -s stop:此方式相当于先查出nginx进程id再使用kill命令强制杀掉进程。
nginx를 다시 시작하세요.
1. 중지하고 시작하세요(권장). :
nginx를 다시 시작하는 것은 먼저 중지하고 다시 시작하는 것과 같습니다. 즉, 중지 명령을 먼저 실행한 다음 시작 명령을 실행합니다. 다음과 같이
ps aux|grep nginx2. 구성 파일을 다시 로드합니다. nginx 구성 파일 nginx.conf가 수정되면 구성을 적용하려면 nginx를 다시 시작해야 합니다. 구성을 중지하지 않고 -s reload를 사용합니다. 다음과 같이 nginx에 정보를 적용할 수 있습니다.
./nginx -s quit ./nginx시작이 성공적으로 완료되면 브라우저에 해당 컴퓨터의 IP 주소(예: 192.168.1.121)를 입력하면 다음과 같은 페이지를 볼 수 있습니다.
./nginx -s reload
vim /etc/rc.local이 시점에서 nginx가 설치되고 시작, 중지 및 재시작 작업이 모두 완료되었습니다.
위 내용은 JAVA--CentOS에 Nginx 서버를 설치하는 방법의 예의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!