Centos 설치 nginx openssl (환경 만, 초보 자 참고)

2675 단어 nginxOpenSSL
단계 1. 우선 위탁 관리 업 체 가 시스템 에 gcc 를 설치 하 는 지 확인 하고 명령 gcc - v 를 입력 하면 다음 단계 2 를 건 너 뛰 는 것 을 표시 합 니 다.
[root@MyCloudServer /]# gcc -v 
Using built-in specs.
Target: i686-redhat-linux
Configured with: ../configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=http://bugzilla.redhat.com/bugzilla --enable-bootstrap --enable-shared --enable-threads=posix --enable-checking=release --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-gnu-unique-object --enable-languages=c,c++,objc,obj-c++,java,fortran,ada --enable-java-awt=gtk --disable-dssi --with-java-home=/usr/lib/jvm/java-1.5.0-gcj-1.5.0.0/jre --enable-libgcj-multifile --enable-java-maintainer-mode --with-ecj-jar=/usr/share/java/eclipse-ecj.jar --disable-libjava-multilib --with-ppl --with-cloog --with-tune=generic --with-arch=i686 --build=i686-redhat-linux
Thread model: posix
gcc version 4.4.7 20120313 (Red Hat 4.4.7-11) (GCC)

단계 2. gcc 와 gcc - c + 설치
yum -y install gcc

yum -y install gcc-c++

단계 3. pcre - devel 설치 (Nginx 컴 파일 에 PCRE (Perl Compatible Regular Expression) 가 필요 합 니 다. Nginx 의 Rewrite 모듈 과 HTTP 핵심 모듈 은 PCRE 정규 표현 식 문법 에 사용 되 기 때 문 입 니 다)
yum -y install pcre-devel

절차 4. openssl 과 openssl - devel 을 설치 합 니 다. 
yum  -y install openssl 
yum  -y install openssl-devel

단계 5, 다운로드 nginx
wget http://nginx.org/download/nginx-1.3.11.tar.gz /opt/

단계 6, 설치 nginx
# tar -zxvf nginx-1.3.11.tar.gz
# cd nginx-1.3.11
# ./configure --prefix=/opt/nginx --with-http_stub_status_module --with-http_ssl_module 
# make
# make install
        
--prefix=/usr 
--sbin-path=/usr/sbin/nginx
--conf-path=/etc/nginx/nginx.conf
--error-log-path=/var/log/nginx/error.log
--pid-path=/var/run/nginx/nginx.pid
--lock-path=/var/lock/nginx.lock
--user=www-nginx
--group=www
--with-http_flv_module
--with-http_gzip_static_module
--http-log-path=/var/log/nginx/access.log --http-client-body-temp-path=/var/tmp/nginx/client/
--http-proxy-temp-path=/var/tmp/nginx/proxy/
--http-fastcgi-temp-path=/var/tmp/nginx/fcgi/
--with-http_stub_status_module #nginx  
--with-http_ssl_module #  HTTPS
--with-http_sub_module #  URL   
--with-pcre=/usr/include/pcre/ (       )
--with-md5=/usr/lib #md5       
--with-http_memcached_module (  memcache  ) 
--with-http_rewrite_module (    url  )
--with-ipv6 (  ipv6)

절차 7. nginx 에 컴 파일 된 프로필 을 지정 합 니 다.
sbin/nginx -c /opt/nginx/conf/nginx.conf

단계 8, 시작 nginx
sbin/nginx -s reload

좋은 웹페이지 즐겨찾기