在CentOS 7上安装最新版本的Nginx mainline(通过官方软件源)
首先
使用公式存储库在CentOS7上安装最新版的Nginx主线版本。
原文:Nginx的各种安装方法和EOL总结
参考:nginx:Linux包
支持
如果使用这种方法进行部署,我认为会得到支持,直到停止开发nginx为止。
如果不指定特定版本,我认为将始终提供mainline的最新版本。
日志
注册仓库
# vi /etc/yum.repos.d/nginx.repo
[nginx-stable]
name=nginx stable repo
baseurl=http://nginx.org/packages/centos/$releasever/$basearch/
gpgcheck=1
enabled=0
gpgkey=https://nginx.org/keys/nginx_signing.key
[nginx-mainline]
name=nginx mainline repo
baseurl=http://nginx.org/packages/mainline/centos/$releasever/$basearch/
gpgcheck=1
enabled=1
gpgkey=https://nginx.org/keys/nginx_signing.key
安装
# cat /etc/redhat-release
CentOS Linux release 7.6.1810 (Core)
# yum install -y nginx which
... 略
启动/停止Nginx。
# systemctl start nginx
# systemctl status -l nginx
● nginx.service - nginx - high performance web server
Loaded: loaded (/usr/lib/systemd/system/nginx.service; disabled; vendor preset: disabled)
Active: active (running) since Mon 2019-10-14 14:43:18 UTC; 5s ago
Docs: http://nginx.org/en/docs/
Process: 209 ExecStart=/usr/sbin/nginx -c /etc/nginx/nginx.conf (code=exited, status=0/SUCCESS)
Main PID: 210 (nginx)
CGroup: /docker/3958968fa78fc4022e085070a496f6c485f439fd4b9677c28706f5a9dcf50d47/system.slice/nginx.service
tq210 nginx: master process /usr/sbin/nginx -c /etc/nginx/nginx.conf
mq211 nginx: worker process
? 210 nginx: master process /usr/sbin/nginx -c /etc/nginx/nginx.conf
Oct 14 14:43:18 3958968fa78f systemd[1]: Starting nginx - high performance web server...
Oct 14 14:43:18 3958968fa78f systemd[1]: PID file /var/run/nginx.pid not readable (yet?) after start.
Oct 14 14:43:18 3958968fa78f systemd[1]: Started nginx - high performance web server.
# systemctl stop nginx
# systemctl status -l nginx
● nginx.service - nginx - high performance web server
Loaded: loaded (/usr/lib/systemd/system/nginx.service; disabled; vendor preset: disabled)
Active: inactive (dead)
Docs: http://nginx.org/en/docs/
Oct 14 14:43:18 3958968fa78f systemd[1]: Starting nginx - high performance web server...
Oct 14 14:43:18 3958968fa78f systemd[1]: PID file /var/run/nginx.pid not readable (yet?) after start.
Oct 14 14:43:18 3958968fa78f systemd[1]: Started nginx - high performance web server.
Oct 14 14:44:44 3958968fa78f systemd[1]: Stopping nginx - high performance web server...
Oct 14 14:44:44 3958968fa78f systemd[1]: Stopped nginx - high performance web server.
自動啟動/取消設定nginx。
# systemctl enable nginx
Created symlink from /etc/systemd/system/multi-user.target.wants/nginx.service to /usr/lib/systemd/system/nginx.service.
# systemctl list-unit-files --type=service |grep nginx
nginx-debug.service disabled
nginx.service enabled
# systemctl disable nginx
Removed symlink /etc/systemd/system/multi-user.target.wants/nginx.service.
# systemctl list-unit-files --type=service |grep nginx
nginx-debug.service disabled
nginx.service disabled
各种确认
# which nginx
/usr/sbin/nginx
# nginx -v
nginx version: nginx/1.17.4
# yum info nginx
Loaded plugins: fastestmirror, ovl
Loading mirror speeds from cached hostfile
* base: ftp.riken.jp
* extras: ftp.riken.jp
* updates: ftp.riken.jp
Installed Packages
Name : nginx
Arch : x86_64
Epoch : 1
Version : 1.17.4
Release : 1.el7.ngx
Size : 2.7 M
Repo : installed
From repo : nginx-mainline
Summary : High performance web server
URL : http://nginx.org/
License : 2-clause BSD-like license
Description : nginx [engine x] is an HTTP and reverse proxy server, as well as
: a mail proxy server.