2. Nginx 의 설치 와 켜 기 자동 켜 기

2490 단어 nginx
설치 하 다.
설치 의존
yum install -y libxslt-devel.x86_64 gd.x86_64 gd-devel.x86_64 perl-devel perl-ExtUtils-Embed GeoIP.x86_64 GeoIP-devel.x86_64 gperftools.x86_64 gperftools-devel.x86_64 pcre-devel.x86_64 openssl-devel.x86_64

컴 파일 설정
./configure --prefix=/etc/nginx --sbin-path=/usr/sbin/nginx --modules-path=/usr/lib64/nginx/modules --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/run/nginx.lock --http-client-body-temp-path=/var/cache/nginx/client_temp --http-proxy-temp-path=/var/cache/nginx/proxy_temp --http-fastcgi-temp-path=/var/cache/nginx/fastcgi_temp --http-uwsgi-temp-path=/var/cache/nginx/uwsgi_temp --http-scgi-temp-path=/var/cache/nginx/scgi_temp --user=nginx --group=nginx --with-compat --with-file-aio --with-threads --with-http_addition_module --with-http_auth_request_module --with-http_dav_module --with-http_flv_module --with-http_gunzip_module --with-http_gzip_static_module --with-http_mp4_module --with-http_random_index_module --with-http_realip_module --with-http_secure_link_module --with-http_slice_module --with-http_ssl_module --with-http_stub_status_module --with-http_sub_module --with-http_v2_module --with-mail --with-mail_ssl_module --with-stream --with-stream_realip_module --with-stream_ssl_module --with-stream_ssl_preread_module --with-debug --with-http_geoip_module --with-cc-opt='-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -fPIC' --with-ld-opt='-Wl,-z,relro -Wl,-z,now -pie'

설치 가 완료 되면 다음 명령 을 통 해 Nginx 를 설치 할 때 설정 한 컴 파일 설정 을 가 져 올 수 있 습 니 다.
/usr/sbin/nginx -V

이 정보 에 근거 하여 우 리 는 컴 파일 된 Nginx 를 완만 하 게 업그레이드 할 것 이다.
부팅
Nginx 공식 문서 의 설명 에 따 르 면https://www.nginx.com/resources/wiki/start/topics/examples/systemd/
[Unit]
Description=The NGINX HTTP and reverse proxy server
After=syslog.target network.target remote-fs.target nss-lookup.target

[Service]
Type=forking
PIDFile=/run/nginx.pid
ExecStartPre=/usr/sbin/nginx -t
ExecStart=/usr/sbin/nginx
ExecReload=/usr/sbin/nginx -s reload
ExecStop=/bin/kill -s QUIT $MAINPID
PrivateTmp=true

[Install]
WantedBy=multi-user.target

우 리 는 상기 내용 을 /lib/systemd/system/nginx.service 에 저장 한 후에 systemctl enable nginx 하면 된다.

좋은 웹페이지 즐겨찾기