Repository(레포지토리)는 사전적의미로 저장소라는 의미를 가지고 있다.
말 그대로 레파지토리는 패키지 저장소
- Redhat(CentOS)은 yum, Debian(Ubuntu)는 apt 등등
* Redhat(CentOS) 레포지토리 위치 - /etc/yum.repos.d/ 에 위치
예를 들어 /etc/yum.repos.d/ 위치에 있는 MariaDB.repo를 확인
baseurl = http://yum.mariadb.org/10.1/centos6-amd64
Index of /10.1/centos6-amd64/
Index of /10.1/centos6-amd64/ Name Last Modified Size Type .. / - Directory repodata / 2020-Nov-02 19:46:53 - Directory rpms / 2020-Nov-02 19:41:32 - Directory srpms / 2020-Oct-30 01:28:35 - Directory md5sums.txt 2020-Nov-02 19:46:26 3.7K text/plain sha1sums.txt 2020-Nov-02 19:46:30 4.0K tex...
yum.mariadb.org
보통 yum install을 했을때 해당하는 baseurl 위치에 있는 repodata에 있는 정보들을 보고 패키지를 설치한다.
* 레포지토리가 도메인으로 설정되어 있기때문에 DNS 설정해야한다.