1. nginx 설치
1. nginx 공식 홈페이지에서 패키지를 다운로드하세요. 다운로드 주소는 http://nginx.org/en/download.html 입니다.
2. WinSCP(ftp 업로드 도구).exe FTP 업로드 도구를 CentOS에 업로드합니다.
3. 먼저 디렉터리를 만들고 함께 사용할 설치 패키지를 넣었습니다.
#mkdir / home/
#tar zxf nginx-1.4.1.tar.gz
#cd nginx-1.4.1
4. pcre 개발 패키지 설치
#yum install -y pcre-devel
5. 설치 중에 다음 오류가 나타나면 컴파일 환경이 누락되었습니다. 소스 코드 컴파일에 필요한 도구 및 라이브러리 설치
./configure: error: C 컴파일러 cc를 찾을 수 없음
#yum install gcc gcc-c++ ncurses-devel perl
6. http에서 cmake 설치: / /www.cmake.org 소스 코드를 다운로드하고 컴파일 및 설치
#yum -y install make gcc gcc-c++ ncurses-devel
#yum -y install zlib zlib-devel
7. 만약 SSL 기능이 필요하고, openssl이 필요합니다. 라이브러리
#yum -y install openssl openssl--devel
8. nginx 설치
#cd nginx-1.4.1
#./configure --prefix=/ opt/nginx
# make
#make install
9. 서비스 시작
#/opt/nginx/sbin/nginx -c /opt/nginx/conf/nginx.conf
10 . 서비스 중지
#/ opt/nginx/sbin/nginx -s stop
11. 포트 점유 확인
#netstat -tunlp
12. 다른 머신에 접근할 수 없는 경우 해결책은 다음과 같습니다. 다음과 같습니다:
#/sbin/iptables - I INPUT -p tcp --dport 80 -j ACCEPT
그런 다음 저장:
#/etc/rc.d/init.d/iptables save
방화벽 다시 시작
#/etc/init.d /iptables restart
위 내용은 관련 내용을 포함하여 CenOS Linux에서의 nginx 설치에 대해 소개하고 있으며, PHP 튜토리얼에 관심이 있는 친구들에게 도움이 되기를 바랍니다.