CentOS 평활 업그레이드 Nginx 【 등급 】
$ wget http://nginx.org/download/nginx-1.4.3.tar.gz
압축 해제 후 실행:
<!-- lang: shell -->
$ tar -zxvf nginx-1.4.3.tar.gz
$ cd nginx-1.4.3/
$ ./configure --user=www --group=www --prefix=/usr/local/webserver/nginx --with-http_stub_status_module --with-http_ssl_module --with-http_gzip_static_module
$ make
make install 을 실행 하지 않도록 주의 하 세 요.
메모: – prefix = nginx 디 렉 터 리 를 설치 합 니 다.
팁: nginx 설치 설정 옵션 을 어떻게 봅 니까?
$ service nginx -V
이어서 nginx 업그레이드
컴 파일 이 끝 났 습 니 다. obbs 디 렉 터 리 아래 nginx 실행 파일 이 있 습 니 다. 바로 이것 입 니 다.
<!-- lang: shell -->
// nginx
$ sudo mv /usr/local/webservice/nginx/sbin/nginx /usr/local/webservice/nginx/sbin/nginx.old
// objs nginx
$ cd objs
$ sudo cp nginx /usr/local/webserver/nginx/sbin/nginx
//
$ /usr/local/webserver/nginx/sbin/nginx -t
//
$ cd ../
// nginx
$ sudo make upgrade
알림: nginx 프로 세 스 pid 파일 의 기본 위 치 는 nginx 의 logs 디 렉 터 리 입 니 다: / logs / nginx. pid;nginx 의 pid 저장 위 치 를 수정 한 적 이 있다 면 이러한 오류 알림 이 발생 할 수 있 습 니 다.
<!-- lang: shell -->
$ sudo make upgrade
/usr/local/webserver/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
kill -USR2 `cat /usr/local/nginx/logs/nginx.pid`
cat: /usr/local/nginx/logs/nginx.pid:
kill: usage: kill [-s sigspec | -n signum | -sigspec] pid | jobspec ... or kill -l [sigspec]
make: *** [upgrade] 1
해결 방법:
인터넷 에 많은 것들 이 있 습 니 다. 예 를 들 어 각종 kill 프로 세 스 id, 복잡 한 정 도 는 말 하고 싶 지 않 습 니 다. 여기 간단 한 방법 을 드 리 겠 습 니 다.
현재 nginx 프로 세 스 를 먼저 중지 합 니 다.
<!-- lang: shell -->
$ sudo kill `cat /usr/local/webserver/nginx/nginx.pid`
nginx.conf
$ sudo vi /usr/local/webserver/nginx/conf/nginx.conf
// pid
pid /usr/local/webserver/nginx/logs/nginx.pid;
새 버 전의 nginx 를 현재 sbin 디 렉 터 리 로 복사 하고 업 그 레이 드 를 실행 합 니 다. (상기 방법 참조) nginx 를 시작 하면 업 그 레이 드 를 완료 합 니 다!
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
간단! Certbot을 사용하여 웹 사이트를 SSL(HTTPS)화하는 방법초보자가 인프라 주위를 정돈하는 것은 매우 어렵습니다. 이번은 사이트를 간단하게 SSL화(HTTP에서 HTTPS통신)로 변경하는 방법을 소개합니다! 이번에는 소프트웨어 시스템 Nginx CentOS7 의 환경에서 S...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.