yum 설치 nginx 오류: No package nginx available. 오류: 아무것도 할 수 없습니다.

1749 단어 NginxLinux
nginx 를 설치 하 는 중 다음 과 같은 오류 가 발생 했 습 니 다:
[root@centos6-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

해결 하 다.

좋은 웹페이지 즐겨찾기