소스 코드 설치 nginx

준비 작업:
1) 개발 도구 및 개발 라 이브 러 리 설치 확보
2) 설 치 된 다른 웹 서비스 소프트웨어 를 마 운 트 해제
3) 새 사용자: nginx
4) 의존 라 이브 러 리 설치
# yum -y install pcre-devel
1. 가방 해제
[root@web01 nginx-package]# tar -zxfnginx-0.8.55.tar.gz

2. 설정
. / configure 상용 옵션
--prefix=PATH  //설치 경로 지정
--user=USER
--group=GROUP
/ / 프로 세 스 를 위 한 비 특권 사용자 그룹 설정
--with-http_stub_status_module  //stub 모듈 추가
--with-http_ssl_module / / ssl 모듈 추가
[root@web01 nginx-0.8.55]# ./configure--prefix=/usr/local/nginx --user=nginx  --group=nginx  --with-http_stub_status_module   --with-http_ssl_module

3. 컴 파일 설치
[root@web01 nginx-0.8.55]# make &&make install

4. nginx 를 환경 변수 에 추가
[root@web01 ~]# vim .bash_profile
10 PATH=$PATH:$HOME/bin:/usr/local/nginx/sbin
[root@web01 ~]# source .bash_profile

5. nginx 를 시작 하고 상 태 를 봅 니 다.
[root@web01 ~]# nginx
[root@web01 ~]# netstat -anltp | grep nginx
tcp        0      0 0.0.0.0:80                  0.0.0.0:*                   LISTEN      8212/nginx       
[root@web01 ~]#

감청 포트: 80
프로 세 스 이름: nginx
전송 프로 토 콜: tcp
6. 방문 테스트
[root@web01 ~]# elinks --dump http://localhost
                               Welcome to nginx!
[root@web01 ~]#

좋은 웹페이지 즐겨찾기