2011. 8. 18. 12:15

Nginx YUM으로 설치하기

먼저 EPEL (Extra Packages for Enterprise Linux)을 설치해야 YUM에 목록이 나오니 반드시 설치해야 한다.
EPEL에는 일반적으로 개별적으로 설치해야 했던 fail2ban 과 같은 유용한 패키지가 많이 있다.

1. 버젼에 맞는 EPEL 패키지 설치

CentOS 6.x 32-bit (x86/i386):

rpm -Uvh http://download.fedora.redhat.com/pub/epel/6/i386/epel-release-6-5.noarch.rpm

 

CentOS 6.x 64-bit (x64):

rpm -Uvh http://download.fedora.redhat.com/pub/epel/6/x86_64/epel-release-6-5.noarch.rpm

 

CentOS 5.x 32-bit (x86/i386):

rpm -Uvh http://download.fedora.redhat.com/pub/epel/5/i386/epel-release-5-4.noarch.rpm

 

CentOS 5.x 64-bit (x64):

rpm -Uvh http://download.fedora.redhat.com/pub/epel/5/x86_64/epel-release-5-4.noarch.rpm


2. YUM으로 설치
yum install nginx 하면 끝.
다만 현재 최신버젼이 1.10 인데 비해 yum 에는 0.8.54가 등록되어 있다.
소스 컴파일 설치도 비교적 어렵지 않으니 그냥 소스컴파일 해서 쓸련다.