yum安裝nginx時報錯:No package nginx available. Error: Nothing to do
阿新 • • 發佈:2018-12-29
在安裝nginx時出現以下錯誤:
[[email protected]1 ~]# yum install nginx -y
Loaded plugins: fastestmirror, refresh-packagekit, security
Setting up Install Process
Loading mirror speeds from cached hostfile
* base: ftp.sjtu.edu.cn
* extras: ftp.sjtu.edu.cn
* updates: mirrors.shu.edu.cn
No package nginx available.
Error: Nothing to do
解決方案:
出現這個的原因是因為本地yum源中沒有我們想要的nginx,那麼我們就需要建立一個/etc/yum.repos.d/nginx.repo
的檔案,新增一個yum源。
[root@centos6-1 ~]# vim /etc/yum.repos.d/nginx.repo
#在檔案中寫入以下內容:
[nginx]
name=nginx repo
baseurl=http://nginx.org/packages/centos/$releasever/$basearch/
gpgcheck=0
enabled=1
退出儲存後,直接安裝:
[root@centos6-1 ~]# yum install nginx -y
搞定。