Centos下Nginx安裝的正確姿勢;Nginx安裝有很多種方式,但是在centos下如何能夠快速且按照nginx官方標準的安裝nginx呢?
- 首先登入nginx官方網站:http://nginx.org,點選右側download選單,選擇底部Pre-Built Packages對應的stable version(牆裂建議)找到對應的Centos作業系統,複製:
[nginx]
name=nginx repo
baseurl=http://nginx.org/packages/OS/OSRELEASE/$basearch/
gpgcheck=0
enabled=1
這段程式碼。
- 進入我們的機器在 /etc/yum.repos.d/ 目錄下新建 nginx.repo 檔案,將上面程式碼貼上,注意要修改的地方有兩處,我們是在 centos 下安裝的,所以修改其中的 OS 為 centos ,同時修改 OSRELEASE 為我們的 centos 版本號,比如使用的是 centos7.2 我們將其修改為7。
- 至此,我們的 nginx 對應的官方 yum 源就配置好了,我們使用 yum list|grep nginx 來檢視對應的 nginx 資訊。我們可以看到最新的穩定 nginx 版本:
collectd-nginx.x86_64 5.8.0-4.el7 epel
munin-nginx.noarch 2.0.33-1.el7 epel
nextcloud-nginx.noarch 10.0.4-2.el7 epel
nginx.x86_64 1:1.14.0-1.el7_4.ngx nginx
nginx-all-modules.noarch 1:1.12.2-2.el7 epel
nginx-debug.x86_64 1:1.8.0-1.el7.ngx nginx
nginx-debuginfo.x86_64 1:1.14.0-1.el7_4.ngx nginx
nginx-filesystem.noarch 1:1.12.2-2.el7 epel
nginx-mod-http-geoip.x86_64 1:1.12.2-2.el7 epel
nginx-mod-http-image-filter.x86_64 1:1.12.2-2.el7 epel
nginx-mod-http-perl.x86_64 1:1.12.2-2.el7 epel
nginx-mod-http-xslt-filter.x86_64 1:1.12.2-2.el7 epel
nginx-mod-mail.x86_64 1:1.12.2-2.el7 epel
nginx-mod-stream.x86_64 1:1.12.2-2.el7 epel
nginx-module-geoip.x86_64 1:1.14.0-1.el7_4.ngx nginx
nginx-module-geoip-debuginfo.x86_64 1:1.14.0-1.el7_4.ngx nginx
nginx-module-image-filter.x86_64 1:1.14.0-1.el7_4.ngx nginx
nginx-module-image-filter-debuginfo.x86_64
1:1.14.0-1.el7_4.ngx nginx
nginx-module-njs.x86_64 1:1.14.0.0.2.2-1.el7_4.ngx nginx
nginx-module-njs-debuginfo.x86_64 1:1.14.0.0.2.2-1.el7_4.ngx nginx
nginx-module-perl.x86_64 1:1.14.0-1.el7_4.ngx nginx
nginx-module-perl-debuginfo.x86_64 1:1.14.0-1.el7_4.ngx nginx
nginx-module-xslt.x86_64 1:1.14.0-1.el7_4.ngx nginx
nginx-module-xslt-debuginfo.x86_64 1:1.14.0-1.el7_4.ngx nginx
nginx-nr-agent.noarch 2.0.0-12.el7.ngx nginx
owncloud-nginx.noarch 9.1.5-1.el7 epel
pcp-pmda-nginx.x86_64 3.11.8-7.el7 base
python2-certbot-nginx.noarch 0.25.1-1.el7 epel
- 上述看到的是最新版本
nginx.x86_64/1:1.14.0-1.el7_4.ngx
,直接使用yum install nginx
就可以安裝了。安裝完成後使用nginx -v
和nginx -V
檢視對應的版本資訊和配置資訊。