Centos 7下安裝nginx,使用yum install nginx,提示沒有可用的軟件包。nginx
18 (flaskApi) [root@67 flaskDemo]# yum -y install nginx
19 已加載插件:fastestmirror, langpacks
20 Loading mirror speeds from cached hostfile
21 * base: mirrors.aliyun.com
22 * extras: mirrors.aliyun.com
23 * updates: mirrors.aliyun.com
24 沒有可用軟件包 nginx。
25 錯誤:無須任何處理
緣由是nginx位於第三方的yum源裏面,而不在centos官方yum源裏面flask
不少軟件包在yum裏面沒有的,解決的方法,就是使用epel源,也就是安裝epel-release軟件包。EPEL (Extra Packages for Enterprise Linux)是基於Fedora的一個項目,爲「紅帽系」的操做系統提供額外的軟件包,適用於RHEL、CentOS等系統。能夠在下面的網址上找到對應的系統版本,架構的軟件包centos
解決辦法,安裝epel架構
sudo yum install epel-release
更新(更新時間稍微長一些,耐心等待)spa
yum update
從新試一下:操作系統
yum install -y nginx
安裝成功: .net
已安裝: nginx.x86_64 1:1.12.2-3.el7 做爲依賴被安裝: nginx-all-modules.noarch 1:1.12.2-3.el7 nginx-filesystem.noarch 1:1.12.2-3.el7 nginx-mod-http-geoip.x86_64 1:1.12.2-3.el7 nginx-mod-http-image-filter.x86_64 1:1.12.2-3.el7 nginx-mod-http-perl.x86_64 1:1.12.2-3.el7 nginx-mod-http-xslt-filter.x86_64 1:1.12.2-3.el7 nginx-mod-mail.x86_64 1:1.12.2-3.el7 nginx-mod-stream.x86_64 1:1.12.2-3.el7 完畢!
參考文檔:插件