CentOS 7.5 컴 파일 설치 Nginx 1.15.3
37257 단어 #LNMPCentOSNginxLNMP 환경 구축
CentOS 7.5
에서 Nginx 공식 최신 1.15.3
버 전 을 어떻게 컴 파일 하여 설치 하 는 지 기록 하고 있다.Nginx
, Mysql
, PHP
과 같은 소스 코드 는 모두 C/C++
으로 쓰 여 있 기 때문에 자신의 CentOS 7.5
서버 에 gcc
과 g++
소프트웨어 를 설치 해 야 한다.LNMP
환경 을 구축 하 는 것 은 일반적으로 Mysql
/ MariaDB
을 먼저 설치 한 다음 에 Nginx
을 설치 하 는 것 이 고 그 다음은 PHP
을 설치 하 는 것 이다.설치 환경
CentOS 7.5.1804
Nginx 1.15.3
Pcre
, Zlib
, Openssl
먼저
nginx
및
이라는 사용자 와 nginx
이라는 사용자 그룹 을 만 든 다음 에 nginx
에 필요 한 의존 라 이브 러 리 와 의존 패 키 지 를 설치 하고 마지막 으로 .configure
을 통 해 설치 하 는 상세 한 설정 을 합 니 다.Nginx
사용자 그룹 > `nginx` (`-r` )
[root@lightserver ~]$ groupadd -r nginx
nginx
시스템 사용자 그룹 >
> -r: ( `nginx`)
> -g: ( `nginx` `nginx` )
> -s: `shell`( `/sbin/nologin` `nginx` )
> -d: ( `nginx` `/usr/local/nginx` )
> -M: ( `nginx` `/home` `nginx` )
[root@lightserver ~]$ useradd -r -g nginx -s /sbin/nologin -d /usr/local/nginx -M nginx
관련 디 렉 터 리 만 들 기
> `/var/tmp/nginx/`
[root@lightserver ~]$ mkdir -pv /var/tmp/nginx/{client_body,proxy,fastcgi,uwsgi,scgi}
> `nginx`
[root@lightserver ~]$ chown -R nginx:nginx /var/tmp/nginx/
> `/usr/local/nginx/` `logs`
[root@lightserver ~]$ mkdir -pv /usr/local/nginx/logs/
> `nginx`
[root@lightserver ~]$ chown -R nginx:nginx /usr/local/nginx/
설치 의존 라 이브 러 리
> `gcc`、`gcc-c++`、`C/C++`
[root@lightserver ~]$ yum -y install gcc gcc-c++ autoconf automake make
> `yum` `nginx`
[root@lightserver ~]$ yum -y install openssl openssl-devel libxml2-devel libxslt-devel perl-devel perl-ExtUtils-Embed libtool zlib zlib-devel pcre pcre-devel patch
패키지 디 렉 터 리
>
[root@lightserver ~]$ mkdir soft && cd soft
압축 해제 소스 패키지 다운로드
> `Nginx1.15.3` `tar` ,
[root@lightserver soft]$ wget http://nginx.org/download/nginx-1.15.3.tar.gz
[root@lightserver soft]$ tar -zxvf nginx-1.15.3.tar.gz
pcre
: Nginx
의 Rewrite
기능 >
[root@lightserver soft]$ wget https://ftp.pcre.org/pub/pcre/pcre-8.42.tar.gz
>
# tar -zxvf pcre-8.42.tar.gz
>
# cd pcre-8.42/
# ./configure
# make && make install
# cd ~/soft/
zlib
: Nginx
의 Gzip
압축 기능 >
[root@lightserver soft]$ wget http://www.zlib.net/fossils/zlib-1.2.11.tar.gz
>
# tar -zxvf zlib-1.2.11.tar.gz
>
# cd zlib-1.2.11
# ./configure
# make && make install
# cd ~/soft/
openssl
: nginx
제3자 모듈 - nginx-sticky-module
의 사용 (cookie
의 세 션 유지 기반) >
[root@lightserver soft]$ wget https://www.openssl.org/source/openssl-1.1.1-pre8.tar.gz
>
# tar -zxvf openssl-1.1.1-pre8.tar.gz
>
# cd openssl-1.1.1
# ./configure
# make && make install
# cd ~/soft/
>
[root@lightserver soft]$ wget https://bitbucket.org/nginx-goodies/nginx-sticky-module-ng/get/master.tar.gz
>
# tar -zxvf /master.tar.gz
# mv nginx-goodies-nginx-sticky-module-ng-08a395c66e42/ nginx-sticky-module/
nginx
컴 파일 매개 변수> `nginx`
[root@lightserver ~]$ cd ~/soft/nginx-1.15.3
>
>
> , , ,
[root@lightserver nginx-1.15.3]$
./configure \
--prefix=/usr/local/nginx \
--sbin-path=/usr/sbin/nginx \
--conf-path=/etc/nginx/nginx.conf \
--error-log-path=/var/log/nginx/error.log \
--http-log-path=/var/log/nginx/access.log \
--pid-path=/var/run/nginx.pid \
--lock-path=/var/lock/nginx.lock \
--user=nginx \
--group=nginx \
--with-http_ssl_module \
--with-http_v2_module \
--with-http_dav_module \
--with-http_flv_module \
--with-http_realip_module \
--with-http_addition_module \
--with-http_xslt_module \
--with-http_stub_status_module \
--with-http_sub_module \
--with-http_random_index_module \
--with-http_degradation_module \
--with-http_secure_link_module \
--with-http_gzip_static_module \
--with-http_perl_module \
--add-module=../nginx-sticky-module \
--with-pcre=../pcre-8.42 \
--with-zlib=../zlib-1.2.11 \
--with-openssl=../openssl-1.1.1-pre8 \
--with-debug \
--with-file-aio \
--with-mail \
--with-mail_ssl_module \
--http-client-body-temp-path=/var/tmp/nginx/client_body \
--http-proxy-temp-path=/var/tmp/nginx/proxy \
--http-fastcgi-temp-path=/var/tmp/nginx/fastcgi \
--http-uwsgi-temp-path=/var/tmp/nginx/uwsgi \
--http-scgi-temp-path=/var/tmp/nginx/scgi \
--with-stream \
--with-ld-opt="-Wl,-E"
컴 파일 옵션 설명
--prefix=PATH
: nginx 의 설치 디 렉 터 리 를 지정 합 니 다.기본 / usr / local / nginx --sbin-path=PATH
: nginx 실행 가능 한 파일 의 이름 을 설정 합 니 다.기본 적 인 상황 에서 파일 은 설치 디 렉 터 리 / sbin / nginx --conf-path=PATH
: nginx. conf 설정 파일 의 이름 을 설정 합 니 다.nginx 는 서로 다른 프로필 을 사용 하여 시작 할 수 있 습 니 다. 명령 행 매개 변수 에서 지정 합 니 다.기본적으로 파일 은 설치 디 렉 터 리 / conf / nginx. conf --pid-path=PATH
: 메 인 프로 세 스 ID 파일 nginx. pid 를 저장 하 는 이름 을 설정 합 니 다.기본 적 인 상황 에서 파일 은 설치 디 렉 터 리 / logs / ngix. pid --error-log-path=PATH
: 오류, 경고, 진단 파일 의 이름 을 설정 합 니 다.기본적으로 파일 은 설치 디 렉 터 리 / logs / error. log --http-log-path=PATH
: HTTP 서버 의 요청 로그 파일 이름 을 설정 합 니 다.기본적으로 파일 은 설치 디 렉 터 리 / logs / access. log --lock-path=PATH
: 파일 잠 금 을 설치 하고 설치 파일 이 다른 사람 에 게 이용 되 거나 자신 이 잘못 조작 하 는 것 을 방지 합 니 다.--user=nginx
: 프로그램 이 실 행 될 때의 비 특권 사용 자 를 지정 합 니 다.설치 가 완료 되면 언제든지 nginx. conf 설정 파일 에서 user 를 변경 할 수 있 습 니 다.기본 사용자 이름 은 nobody --group=nginx
: 프로그램 이 실 행 될 때 비 특권 사용자 가 있 는 그룹 이름 을 지정 합 니 다.기본적으로 그룹 이름 은 루트 가 아 닌 사용자 의 이름 으로 설정 되 어 있 습 니 다.--with-http_realip_module
사용 ngxhttp_realip_module 지원 (이 모듈 은 요청 헤더 에서 클 라 이언 트 의 IP 주소 값 을 변경 할 수 있 습 니 다. 기본 값 은 닫 기 입 니 다) --with-http_ssl_module
: ngx 사용 하기http_ssl_module 지원 (https 요청 을 지원 하려 면 openssl 이 설치 되 어 있어 야 합 니 다) --with-http_stub_status_module
: ngx 사용 하기http_stub_status_module 지원 (nginx 가 마지막 으로 시 작 된 이래 작업 상태 가 져 오기) --with-http_gzip_static_module
: ngx 사용 하기http_gzip_module 지원 (이 모듈 은 – without - http gzip module 기능 과 같 음) --http-client-body-temp-path=PATH
: http 클 라 이언 트 요청 임시 파일 경 로 를 설정 합 니 다 --http-proxy-temp-path=PATH
: http 프 록 시 임시 파일 경 로 를 설정 합 니 다 --http-fastcgi-temp-path=PATH
: http fastcgi 임시 파일 경로 설정 --http-uwsgi-temp-path=PATH
: http scgi 임시 파일 경로 설정 --with-pcre
: pcre 라 이브 러 리 의 소스 경 로 를 설정 합 니 다. yum 방식 으로 설치 되 어 있 으 면 – with - pcre 를 사용 하여 라 이브 러 리 파일 을 자동 으로 찾 습 니 다.– with - pcr = PATH 를 사용 할 때 는 PCRE 사이트 에서 pcre 라 이브 러 리 의 원본 코드 (버 전 8.4) 를 다운로드 하고 압축 을 풀 어야 하 며 나머지 는 Nginx 의. / configure 와 make 에 맡 겨 야 합 니 다.perl 정규 표현 식 은 location 명령 과 ngx 에 사 용 됩 니 다.http_rewrite_module 모듈 중.--with-zlib=PATH
: zlib (버 전 1.2.11) 의 소스 디 렉 터 리 를 지정 합 니 다.기본적으로 사용 되 는 네트워크 전송 압축 모듈 ngxhttp_gzip_module 시 zlib --with-http_ssl_module
: https 프로 토 콜 모듈 을 사용 합 니 다.기본적으로 이 모듈 은 구축 되 지 않 았 습 니 다.전 제 는 openssl 이 --add-module=PATH
: nginx - sticky - module - ng 또는 캐 시 모듈 과 같은 제3자 외부 모듈 을 추가 합 니 다.새 모듈 을 추가 할 때마다 다시 컴 파일 해 야 합 니 다.주석 판
./configure \
--prefix=/usr/local/nginx \ [Nginx ]
--sbin-path=/usr/sbin/nginx \. [Nginx sbin ]
--conf-path=/etc/nginx/nginx.conf \ [Nginx ]
--error-log-path=/var/log/nginx/error.log \ [Nginx ]
--http-log-path=/var/log/nginx/access.log \ [Nginx ]
--pid-path=/var/run/nginx.pid \ [Nginx ID]
--lock-path=/var/lock/nginx.lock \ [Nginx ]
--user=nginx \ [Nginx ]
--group=nginx \ [Nginx ]
--with-http_ssl_module \ [Nginx ssl ]
--with-http_v2_module \
--with-http_dav_module \
--with-http_flv_module \
--with-http_realip_module \ [ IP ]
--with-http_addition_module \
--with-http_xslt_module \
--with-http_stub_status_module \ [ Nginx ]
--with-http_sub_module \
--with-http_random_index_module \
--with-http_degradation_module \
--with-http_secure_link_module \
--with-http_gzip_static_module \ [Nginx gzip ]
--with-http_perl_module \
--with-pcre=../pcre-8.42 \ [pcre ]
--with-zlib=../zlib-1.2.11 \ [zlib ]
--with-openssl=../openssl-1.1.1-pre8 \ [openssl ]
--with-debug \ [ DEBUG]
--with-file-aio \
--with-mail \
--with-mail_ssl_module \
--http-client-body-temp-path=/var/tmp/nginx/client_body \
--http-proxy-temp-path=/var/tmp/nginx/proxy \
--http-fastcgi-temp-path=/var/tmp/nginx/fastcgi \
--http-uwsgi-temp-path=/var/tmp/nginx/uwsgi \
--http-scgi-temp-path=/var/tmp/nginx/scgi \
--with-stream \ [Nginx stream ]
--with-ld-opt="-Wl,-E" [gcc ]
설정 과정 은 5 분 정도 걸 립 니 다.
설정 후 컴 파일 설치
[root@lightserver ~]$ make && make install
설정
Nginx
[root@lightserver ~]$ vim /etc/init.d/nginx
>
#! /bin/bash
#
# nginx - this script starts and stops the nginx daemon
#
# chkconfig: - 85 15
# description: Nginx is an HTTP(S) server, HTTP(S) reverse \
# proxy and IMAP/POP3 proxy server
#
# processname: nginx
# config: /etc/nginx/nginx.conf
# pidfile: /var/run/nginx.pid
# Source function library.
. /etc/rc.d/init.d/functions
# Source networking configuration.
. /etc/sysconfig/network
# Check that networking is up.
[ "$NETWORKING" = "no" ] && exit 0
nginx="/usr/sbin/nginx"
prog=$(basename $nginx)
NGINX_CONF_FILE="/etc/nginx/nginx.conf"
[ -f /etc/sysconfig/nginx ] && . /etc/sysconfig/nginx
lockfile=/var/lock/nginx.lock
start() {
[ -x $nginx ] || exit 5
[ -f $NGINX_CONF_FILE ] || exit 6
echo -n "Starting $prog: "
daemon $nginx -c $NGINX_CONF_FILE
retval=$?
echo
[ $retval -eq 0 ] && touch $lockfile
return $retval
}
stop() {
echo -n "Stopping $prog: "
killproc $prog -QUIT
retval=$?
echo
[ $retval -eq 0 ] && rm -f $lockfile
return $retval
}
restart() {
configtest || return $?
stop
sleep 1
start
}
reload() {
configtest || return $?
echo -n "Reloading $prog: "
killproc $nginx -HUP
RETVAL=$?
echo
}
force_reload() {
restart
}
configtest() {
$nginx -t -c $NGINX_CONF_FILE
}
rh_status() {
status $prog
}
rh_status_q() {
rh_status >/dev/null 2>&1
}
case "$1" in
start)
rh_status_q && exit 0
$1
;;
stop)
rh_status_q || exit 0
$1
;;
restart|configtest)
$1
;;
reload)
rh_status_q || exit 7
$1
;;
force-reload)
force_reload
;;
status)
rh_status
;;
condrestart|try-restart)
rh_status_q || exit 0
;;
*)
echo $"Usage: $0 {start|stop|status|restart|condrestart|try-restart|reload|force-reload|configtest}"
exit 2
;;
esac
Nginx
시작 스 크 립 트 설정>
[root@lightserver ~]$ chmod +x /etc/init.d/nginx
>
[[email protected] ~]$ chkconfig --add nginx
>
[root@lightserver ~]$ chkconfig nginx on
Nginx
서버 시작[root@lightserver ~]$ systemctl start nginx
Nginx
서비스 시작 상태 보기[root@lightserver ~]$ systemctl status nginx
Nginx
프로필 수정> nginx
[root@lightserver ~]$ vi /etc/nginx/nginx.conf
#
#user nobody;
# , cpu
worker_processes 1;
# PID
#error_log logs/error.log;
#error_log logs/error.log notice;
#error_log logs/error.log info;
#pid logs/nginx.pid;
#
events {
use epoll;
worker_connections 1024;
}
http {
include mime.types;
default_type application/octet-stream;
log_format main '$remote_addr - $remote_user [$time_local] "$request" '
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent" "$http_x_forwarded_for"';
access_log logs/access.log main;
sendfile on;
#tcp_nopush on;
#keepalive_timeout 0;
keepalive_timeout 65;
tcp_nodelay on;
gzip on;
gzip_disable "MSIE [1-6]";
client_header_buffer_size 128k;
large_client_header_buffers 4 128k;
server {
listen 80;
server_name www.nginx.dev;
#charset koi8-r;
access_log logs/nginx.dev.access.log main;
location / {
root /data/www/html;
index index.php index.html index.htm;
}
#error_page 404 /404.html;
# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /data/www/html;
}
location ~ ^/(images|javascript|js|css|flash|media|static)/ {
expires 30d;
}
# proxy the PHP scripts to Apache listening on 127.0.0.1:80
#
#location ~ \.php$ {
# proxy_pass http://127.0.0.1;
#}
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
location ~ \.php$ {
# root html;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
# deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
location ~ /\.ht {
deny all;
}
}
# another virtual host using mix of IP-, name-, and port-based configuration
#
#server {
# listen 8000;
# listen somename:8080;
# server_name somename alias another.alias;
# location / {
# root html;
# index index.html index.htm;
# }
#}
# HTTPS server
#
#server {
# listen 443 ssl;
# server_name localhost;
# ssl_certificate cert.pem;
# ssl_certificate_key cert.key;
# ssl_session_cache shared:SSL:1m;
# ssl_session_timeout 5m;
# ssl_ciphers HIGH:!aNULL:!MD5;
# ssl_prefer_server_ciphers on;
# location / {
# root html;
# index index.html index.htm;
# }
#}
}
CentOS 에
TCP
80
포트 추가>
[root@lightserver ~]$ firewall-cmd --zone=public --add-port=80/tcp --permanent
>
--zone=public
>
--add-port=80/tcp
>
--permanent
> ( `root` , , , . )
[[email protected] ~]$ firewall-cmd --reload
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Rails Turbolinks를 페이지 단위로 비활성화하는 방법원래 Turobolinks란? Turbolinks는 링크를 생성하는 요소인 a 요소의 클릭을 후크로 하고, 이동한 페이지를 Ajax에서 가져옵니다. 그 후, 취득 페이지의 데이터가 천이 전의 페이지와 동일한 것이 있...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.