16.2. 创建远程仓库
多个 Red Hat Enterprise Linux 服务器可访问该网络中的单一 Red Hat Enterprise Linux 程序库。这需要一个正在运行的网页服务器,最有可能是 Apache。
先决条件
- 您有一个 Red Hat Enterprise Linux 8 安装 DVD/ISO 镜像。
- 您有多个运行 Red Hat Enterprise Linux 的服务器。
流程
挂载并复制下载的 DVD 的内容。
mkdir /mnt/rhel{ProductNumber} mount -o loop,ro rhel-{ProductNumber}-x86_64-dvd.iso /mnt/rhel{ProductNumber}/ cp -r /mnt/rhel{ProductNumber}/ /var/www/html/ umount /mnt/rhel{ProductNumber}
下一步是在客户端执行,而不是在安装了 Apache 的服务器中执行。
为 BaseOS 和 AppStream 软件仓库创建一个 repo 文件。
vi /etc/yum.repos.d/rhel_http_repo.repo [BaseOS_repo_http] name=RHEL_8_x86_64_HTTP BaseOS baseurl="http://myhost/rhel8/BaseOS" gpgcheck=1 gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-redhat-release [AppStream_repo_http] name=RHEL_8_x86_64_HTTP AppStream baseurl="http://myhost/rhel8/AppStream" gpgcheck=1 gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-redhat-release [root@localhost ~]# yum repolist Updating Subscription Management repositories. Unable to read consumer identity This system is not registered to Red Hat Subscription Management. You can use subscription-manager to register. Last metadata expiration check: 0:08:33 ago on Út 23. července 2019, 16:48:09 CEST. repo id repo name status AppStream_repo_http RHEL_8_x86_64_HTTP AppStream 4,672 BaseOS_repo_http RHEL_8_x86_64_HTTP BaseOS 1,658 [root@localhost ~]#