[root@nginx ~]# cat /etc/redhat-release CentOS Linux release 7.4.1708 (Core) [root@nginx ~]# uname -r 3.10.0-693.el7.x86_64
낮은 버전 환경 설치를 참조하세요:
초보자도 Nginx 서비스의 0 기반 배포를 완료할 수 있습니다
Nginx의 이전 버전 보기:
[root@nginx nginx-1.10.3]# /app/nginx/sbin/nginx -V nginx version: nginx/1.8.1 built by gcc 4.8.5 20150623 (Red Hat 4.8.5-16) (GCC) built with OpenSSL 1.0.2k-fips 26 Jan 2017 TLS SNI support enabled configure arguments: --user=nginx --group=nginx --prefix=/app/nginx-1.8.1/ --with-http_stub_status_module --with-http_ssl_module
Nginx 서비스 소프트웨어의 새 버전 다운로드:
[root@nginx ~]# wget -q http://nginx.org/download/nginx-1.10.3.tar.gz
압축을 풀고 디렉터리에 입력:
[root@nginx tools]# tar xf nginx-1.10.3.tar.gz [root@nginx tools]# cd nginx-1.10.3/
사전 컴파일 및 컴파일:
[root@nginx nginx-1.10.3]# ./configure --user=nginx --group=nginx --prefix=/app/nginx-1.8.1/ --with-http_stub_status_module --with-http_ssl_module [root@nginx nginx-1.10.3]# make
뒤로 이전 버전 실행 파일 업로드:
[root@nginx ~]# mv /app/nginx/sbin/nginx /app/nginx/sbin/nginx.old [root@nginx nginx-1.10.3]# cp objs/nginx /app/nginx/sbin/
새 버전 확인 정상 여부:
[root@nginx ~]# /app/nginx/sbin/nginx -t nginx: the configuration file /app/nginx-1.8.1//conf/nginx.conf syntax is ok nginx: configuration file /app/nginx-1.8.1//conf/nginx.conf test is successful
정상적인 재시작을 수행하고 버전 확인:
[root@nginx ~]# /app/nginx/sbin/nginx -s reload [root@nginx ~]# /app/nginx/sbin/nginx -V nginx version: nginx/1.10.3 built by gcc 4.8.5 20150623 (Red Hat 4.8.5-16) (GCC) built with OpenSSL 1.0.2k-fips 26 Jan 2017 TLS SNI support enabled configure arguments: --user=nginx --group=nginx --prefix=/app/nginx-1.8.1/ --with-http_stub_status_module --with-http_ssl_module
프로세스 확인:
[root@nginx ~]# ps -ef | grep nginx root 9003 1 0 10:24 ? 00:00:00 nginx: master process /app/nginx/sbin/nginx nginx 11720 9003 0 11:24 ? 00:00:00 nginx: worker process root 11724 1223 0 11:24 pts/0 00:00:00 grep --color=auto nginx
포트 확인:
[root@nginx ~]# ss -utpln | grep nginx tcp LISTEN 0 128 *:80 *:* users:(("nginx",pid=11720,fd=6),("nginx",pid=9003,fd=6))
위 내용은 Nginx 서비스 설치 및 소프트웨어 업그레이드 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!