링크 ux 에서 컴 파일 설치 nginx
yum -y install make zlib zlib-devel gcc-c++ libtool openssl openssl-devel
PCRE 설치
PCRE 는 Nginx 가 Rewrite 기능 을 지원 하도록 하 는 역할 을 합 니 다.
cd /usr/local/src/
wget http://downloads.sourceforge.net/project/pcre/pcre/8.35/pcre-8.35.tar.gz
tar zxvf pcre-8.35.tar.gz
cd pcre-8.35
./configure
make && make install
버 전 확인 가능:
pcre-config --version
zlib 다운로드 및 압축 풀기:wget http://www.zlib.net/zlib-1.2.11.tar.gz
tar zxvf zlib-1.2.11.tar.gz
openssl 다운로드 및 압축 풀기:
wget http://www.openssl.org/source/openssl-1.0.1g.tar.gz
tar zxvf openssl-1.0.1g.tar.gz
Nginx 실행 에 사용 할 사용자 ww 만 들 기:
[root@bogon conf]# /usr/sbin/groupadd www
[root@bogon conf]# /usr/sbin/useradd -g www www
Nginx 설치
cd /usr/local/src/
wget http://nginx.org/download/nginx-1.14.2.tar.gz( )
tar zxvf nginx-1.12.2.tar.gz
cd nginx-1.12.2
./configure --user=www --group=www --prefix=/usr/local/nginx
--with-http_stub_status_module --with-http_ssl_module
--with-http_gzip_static_module --with-pcre=/usr/local/src/pcre-8.35
--with-zlib=/usr/local/src/zlib-1.2.11 --with-openssl=/usr/local/src/openssl-1.0.1g
configure 이후 다음 과 같은 정보 가 잘못 표시 되 지 않 았 습 니 다.
:
Configuration summary
+ using system PCRE library
+ using system OpenSSL library
+ using system zlib library
nginx path prefix: "/usr/local/nginx"
nginx binary file: "/usr/local/nginx/sbin/nginx"
nginx modules path: "/usr/local/nginx/modules"
nginx configuration prefix: "/usr/local/nginx/conf"
nginx configuration file: "/usr/local/nginx/conf/nginx.conf"
nginx pid file: "/usr/local/nginx/logs/nginx.pid"
nginx error log file: "/usr/local/nginx/logs/error.log"
nginx http access log file: "/usr/local/nginx/logs/access.log"
nginx http client request body temporary files: "client_body_temp"
nginx http proxy temporary files: "proxy_temp"
nginx http fastcgi temporary files: "fastcgi_temp"
nginx http uwsgi temporary files: "uwsgi_temp"
nginx http scgi temporary files: "scgi_temp"
컴 파일 및 설치
실행
make && make install
테스트[root@localhost sbin]# /usr/local/nginx/sbin/nginx -v
nginx version: nginx/1.14.2
[root@bogon conf]# /usr/local/nginx/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
시동 을 걸다
설치 완료 후 service 등의 명령 이 없 으 면 다음 과 같이 시작 할 수 있 습 니 다.
/usr/local/nginx/sbin/nginx
프로 세 스 보기:
[root@localhost vhost]# ps aux | grep nginx
root 22742 0.0 0.1 45924 1196 ? Ss 14:44 0:00 nginx: master process /usr/local/nginx/sbin/nginx
www 22743 0.1 2.8 73060 28688 ? S 14:44 0:00 nginx: worker process
root 22745 0.0 0.0 112724 988 pts/0 R+ 14:44 0:00 grep --color=auto nginx
ok!설치 완료!
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.