詳解CentOS配置Nginx官方的Yum源

2022-10-03 09:51:07 字數 1955 閱讀 3779

一直都在使用阿里雲購買的centos進行專案部署,最近在本地機器搭建了虛擬機器進行某些專案聯絡時,卻發現使用命令yum -y

in nginx不能安裝nginx,本地centos系統的yum倉庫並沒有nginx,查詢資料得以解決,做記錄如下:

由於yum源中沒有我們想要的nginx,那麼我們就需要建立乙個「/etc/yum.repos.d/nginx.repo」的檔案,其實就是新增乙個yum源。

[root@localhost ~]# vim /etc/yum.repos.d/nginx.repo

然後將下面的內容複製進去:

[nginx]

name=nginx repo

baseurl=

gpgcheck=0

enabled=1

然後儲存「/etc/yum.repos.d/nginx.repo」檔案後,我們就使用yum命令查詢一下我們的nginx的yum源配置好了沒有。

[root@loca程式設計客棧lhost ~]# yum list |grep nginx

nginx.x86_64 1:1.12.2-1.el7_4.ngx nginx

nginx-debug.x86_64 1:1.8.0-1.el7.ngx nginx

nginx-debuginfo.x86_64 1:1.12.2-1.el7_4.ngx nginx

nginx-module-geoip.x86_64 1:1.12.2-1.el7_4.ngx nginx

nginx-module-geoip-debuginfo.x86_64 1:1.12.2-1.el7_4.ngx nginx

nginx-module-image-filter.x86_64 1:1.12.2-1.el7_4.ngx nginx

nginx-module-image-filter-debuginfo.x86_64 1:1.12.2-1.el7_4.ngx nginx

nginx-module-njs.x86_64 1:1.12.2.0.1.14-1.el7_4.ngx nginx

nginx-module-njs-debuginfo.x86_64 1:1.12.2.0.1.14-1.el7_4.ngx nginx

nginx-module-perl.x86_64 1:1.12.2-1.el7_4.ngx nginx

nginx-module-perl-debuginfo.x86_64 1:1.12.2-1.el7_4.ngx nginx

nginx-module-xslt.x86_64 1:1.12.2-1.el7_4.ngx nginx

nginx-module-xslt-debuginfo.x86_64 1:1.12.2-1.el7_4.ngx nginx

nginx程式設計客棧-nr-agent.noarch 2.0.0-12.el7.ngx nginx

pcp-pmda-nginx.x86_64 3.11.8-7程式設計客棧.el7 程式設計客棧base

如果執行命令是這樣的顯示效果,那麼我們的nginx的yum源就配置成功啦!

然後要安裝我們的nginx就直接執行:

[root@localhost ~]# yum -y install nginx

如果操作正確到這裡nginx環境就已經安裝ok了。

當然你還可以使用命令查一下究竟是否安裝完成。

[root@localhost ~]# rpm -q nginx

nginx version: nginx/1.12.2

不解釋,已經成功了,並且是nginx官方的最新版本。

本文標題: 詳解centos配置nginx官方的yum源

本文位址:

Nginx配置詳解

nginx的主要配置檔案是nginx.conf,位於安裝目錄下的nginx conf資料夾裡,主要的配置引數如下 定義nginx執行的使用者和使用者組 user nobody nobody nginx程序數,建議設定為等於cpu總核心數。worker processes 8 全域性錯誤日誌定義型別,...

nginx配置詳解

定義nginx執行的使用者和使用者組 user www www nginx程序數,建議設定為等於cpu總核心數。worker processes 8 全域性錯誤日誌定義型別,debug info notice warn error crit error log var log nginx error...

NGINX配置詳解

nginx 配置檔案 user nginx 使用者worker processes 8 工作程序,根據硬體調整,大於等於cpu核數 error log logs nginx error.log crit 錯誤日誌 pid logs nginx.pid pid放置的位置 worker rlimit n...