nginx 부 드 러 운 재 부팅 과 업그레이드 의 실현 방법
/usr/local/webserver/nginx/sbin/nginx -t -c / usr / local / webserver / nginx / conf / nginx. conf 설정 파일 이 올 바 르 지 않 으 면 설정 파일 의 몇 번 째 줄 에 오류 가 있 음 을 알려 줍 니 다.
[emerg]:unknowndirective"abc"inlusrllocaUwebserverlnginxjconflnginx.conf:55Configurationfile/usr/local/webserver/nginx/conf/nginx・conf test failed
설정 파일 이 올 바 르 면 화면 은 다음 두 줄 의 정 보 를 알려 줍 니 다.
The configuration file/usr/loca/webserver/nginx/conf/nginx.conf syntax is okConfiguration file/usr/local/webserver/nginx/conf/nginx.conf test is successful
이 럴 때 Nginx 를 부 드 럽 게 다시 시작 할 수 있 습 니 다.
/usr/local/www/nginx/sbin/nginx -xs reloadx
또는:
killx -HUP `cat /usr/local/www/nginx/logs/nginx.pidx`
다음은 보충 사항 입 니 다.
kill - UP ` cat / usr / local / www / nginx / logs / nginx. pid '를 부 드 럽 게 다시 시작 합 니 다.
부 드 러 운 업그레이드 nginx
cd /yujialinwget http://nginx.org/download/nginx-1.0.6.tar.gztar zxvf nginx-1.0.6.tar.gzcd nginx-1.0.6
/ usr / local / www / nginx / sbin / nginx - Vnginx: nginx version: nginx / 1.0.4nginx: built by gcc 4.1.2 20080704 (Red Hat 4.1.2 - 50) nginx: configure 인수: -- prefix = / usr / local / www / nginx -- with - pcre = / yujialin / pcre - 8.12 -- with - http stub status module -- with - http gzip static module
. / configure -- prefix = / usr / local / www / nginx -- with - pcre = / yujialin / pcre - 8.12 -- with - http stub status module -- with - http gzip static module 이 단락 으로 컴 파일
그리고 make, 제발 make install
make 가 완료 되 었 습 니 다. obbs 디 렉 터 리 에 nginx 가 하나 더 생 겼 습 니 다. 이것 이 바로 새로운 버 전의 프로그램 입 니 다. mv / usr / local / www / nginx / nginx / usr / local / www / nginx / nginx / 2011 0906 cp obbs / nginx / usr / local / www / nginx / sbin / nginx
/usr/local/www/nginx/sbin/nginx -tnginx: the configuration file /usr/local/nginx/conf/nginx.conf syntax is oknginx: configuration file /usr/local/nginx/conf/nginx.conf test is successfu
make upgrade 업그레이드 실행
실행 후 / usr / local / nginx / sbin / nginx - Vnginx: nginx version: nginx / 1.0.6nginx: built by gcc 4.1.2 20080704 (Red Hat 4.1.2 - 50) nginx: configure 인수: -- prefix = / usr / local / www / nginx -- with - pcre = / yujialin / pcre - 8.12 -- with - http stub status module -- with - http gzip static module
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.