File contains no section headers.
2019. 10. 21. 10:18ㆍOS/Linux
CentOS7에 nginx 를 설치하는 과정에서 다음과 같은 오류가 발생했다.
Loaded plugins: fastestmirror File contains no section headers. file: file:///etc/yum.repos.d/nginx.repo, line: 1 'name=nginx repo\n' |
yum 으로 설치하려고 할 때 발생한 오류인데 외부 저장소 파일에 해더가 없다는 오류이다.
파일을 열어보니 다음과 같이 작성되어 있었다.
name=nginx repo baseurl=http://nginx.org/packages/centos/7/$basearch/ gpgcheck=0 enabled=1 |
[nginx] 해더가 빠져있었다 ㅠㅠ
아래와 같이 수정했다.
[nginx] name=nginx repo baseurl=http://nginx.org/packages/centos/7/$basearch/ gpgcheck=0 enabled=1 |
끝
'OS > Linux' 카테고리의 다른 글
CentOS7 Nginx 설치 방법 (0) | 2019.10.22 |
---|---|
nginx failed (13: Permission denied) while connecting to upstream 오류 (2) | 2019.10.22 |
vi 편집기 개행문자 (줄바꿈) 치환 (0) | 2019.10.21 |
CentOS 7 ssh port 변경 방법 (0) | 2019.10.19 |
cetnos7 Oracle client 설치 (0) | 2019.08.16 |
linux java main 실행 (0) | 2019.04.05 |
Linux 여러 대 서버에 ssh 접근 후 shell 파일 실행하기 (0) | 2019.02.22 |
Linux SSH Are you sure you want to continue connecting (yes/no)? 제거 (0) | 2019.02.22 |
Linux Permission denied (publickey,gssapi-keyex,gssapi-with-mic) 해결 방법 (0) | 2019.02.22 |
Linux ssh public key pem 파일 접속 (0) | 2019.02.22 |