码迷,mamicode.com
首页 > 其他好文 > 详细

Nginx 编译安装-1.61.1

时间:2019-11-15 22:22:16      阅读:130      评论:0      收藏:0      [点我收藏+]

标签:The   bugzilla   mod   iot   figure   out   linu   yml   screen   

准备编译安装基础环境

[root@node1 ~]# yum install -y vim lrzsz tree screen psmisc lsof tcpdump wget ntpdate gcc gcc-c++ glibc glibc-devel pcre pcre-devel openssl openssl-devel systemd-devel net-tools iotop bc zip unzip zlib-devel bash-completion nfs-utils automake libxml2 libxml2-devel libxslt libxslt-devel perl perl-ExtUtils-Embed

 

解压缩 nginx 包

[root@node1 ~]# tar xf nginx-1.16.1.tar.gz

 

编译安装

[root@node1 ~]# cd nginx-1.16.1/

[root@node1 nginx-1.16.1]# ./configure --prefix=/apps/nginx --user=nginx --group=nginx --with-http_ssl_module --with-http_v2_module --with-http_realip_module --with-http_stub_status_module --with-http_gzip_static_module --with-pcre --with-stream --with-stream_ssl_module --with-stream_realip_module --with-debug

[root@node1 nginx-1.16.1]# make && make install

 

创建 nginx 系统账户

[root@node1 ~]# useradd nginx -s /sbin/nologin

 

更改 nginx 安装目录所属主和所属组为 nginx

[root@node1 ~]# chown nginx.nginx -R /apps/nginx

 

编写 nginx 自启动脚本

[root@node1 ~]# vim /usr/lib/systemd/system/nginx.service

[Unit]
Description=The nginx HTTP and reverse proxy server
After=network.target remote-fs.target nss-lookup.target

[Service]
Type=forking
PIDFile=/apps/nginx/logs/nginx.pid
# Nginx will fail to start if /run/nginx.pid already exists but has the wrong
# SELinux context. This might happen when running `nginx -t` from the cmdline.
# https://bugzilla.redhat.com/show_bug.cgi?id=1268621
ExecStartPre=/usr/bin/rm -f /apps/nginx/logs/nginx.pid
ExecStartPre=/apps/nginx/sbin/nginx -t
ExecStart=/apps/nginx/sbin/nginx
ExecReload=/bin/kill -s HUP $MAINPID
KillSignal=SIGQUIT
TimeoutStopSec=5
KillMode=process
PrivateTmp=true

[Install]
WantedBy=multi-user.target

 

启动 nginx,并设为开机自启

[root@node1 ~]# systemctl daemon-reload

[root@node1 ~]# systemctl start nginx

[root@node1 ~]# ss -ntl
State     Recv-Q   Send-Q   Local Address:Port   Peer Address:Port
LISTEN   0       100     127.0.0.1:25       *:*
LISTEN   0       128     *:111           *:*
LISTEN   0         128     *:80             *:*
LISTEN   0       128     *:22            *:*
LISTEN   0       100     [::1]:25          [::]:*
LISTEN   0       128     [::]:111           [::]:*
LISTEN   0       128     [::]:22            [::]:*

 

[root@node9 ~]# systemctl enable nginx
Created symlink from /etc/systemd/system/multi-user.target.wants/nginx.service to /usr/lib/systemd/system/nginx.service.

Nginx 编译安装-1.61.1

标签:The   bugzilla   mod   iot   figure   out   linu   yml   screen   

原文地址:https://www.cnblogs.com/yinx1n/p/11869663.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!