Step 3/8 : RUN yum install -y oracle-11g ---> Running in d936020bcc06 Loaded plugins: product-id, subscription-manager This system is not registered to Red Hat Subscription Management. You can use subscription-manager to register. There are no enabled repos. Run "yum repolist all" to see the repos you have. You can enable repos with yum-config-manager --enable <repo> The command '/bin/sh -c yum install -y oracle-11g' returned a non-zero code: 1
时间: 2024-03-30 16:35:23 浏览: 114
这段话是关于在 Docker 容器中安装 oracle-11g 时遇到的错误。错误信息显示系统没有注册到 Red Hat Subscription Management,并且没有启用任何软件源。因此,无法使用 yum 安装软件包。您需要按照以下步骤解决问题:
1. 运行 subscription-manager register 命令,使用有效的 Red Hat 订阅用户名和密码注册系统。
2. 运行 subscription-manager refresh 命令以更新系统信息。
3. 运行 yum repolist all 命令以查看当前系统可用的软件源。
4. 如果需要,使用 yum-config-manager --enable=<repo> 命令启用需要的软件源。
5. 最后,再次运行 yum install -y oracle-11g 命令以安装软件包。
请注意,这些命令需要以 root 用户身份运行。
阅读全文