Centos 6.4 시스템 에 nginx 설치 및 간단 한 설정

1294 단어 nginx
시스템 설정 및 설치: LInux 시스템: Centos 6.4 nginx 버 전 1.14 (홈 페이지 현재 최신) wget 을 사용 하여 최신 소스 코드 를 직접 다운로드 하여 컴 파일 합 니 다.wget http://nginx.org/download/nginx-1.14.0.tar.gz 루트 권한 으로 설치 ./configure make && make install 가 완료 되면 프로그램 및 설정 파일 은 / usr / local / nginx 디 렉 터 리 에 저 장 됩 니 다.수정 서버 의 포트 및 ip 실행 및 설정server { listen 1122; # server_name 192.168.1.12;# IP [root@localhost nginx]./sbin/nginx IE 에 입력http://192.168.1.12:1122/ 방문 할 수 있 습 니 다.
일반 명령
[root@localhost 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
[root@localhost sbin]# ./nginx #   
[root@localhost sbin]# ps -ef | grep nginx
root     13006     1  0 19:29 ?        00:00:00 nginx: master process ./nginx
nobody   13007 13006  0 19:29 ?        00:00:00 nginx: worker process
root     13009  5632  0 19:29 pts/2    00:00:00 grep nginx
[root@localhost sbin]# ./nginx -s stop #     
[root@localhost sbin]# ps -ef | grep nginx
root     13012  5632  0 19:29 pts/2    00:00:00 grep nginx
[root@localhost sbin]# ./nginx -v #    
nginx version: nginx/1.14.0
[root@localhost sbin]# ./nginx -c /usr/local/nginx/conf/nginx.conf
#        nginx,       

좋은 웹페이지 즐겨찾기