在 oracle linux server 7.6 上安装 oracle 19c 数据库预安装时出错

在 oracle linux server 7.6 上安装 oracle 19c 数据库预安装时出错

我正在尝试在 oracle linux 7.6 上安装 oracle 19c,我需要安装 oracle 19c 预安装,知道这是全新安装,但我不明白为什么会出现这些错误:

    yum -y localinstall http://yum1.stanford.edu/mrepo/ol8-x86 64/RPMS.appstream/oracle-database-preinstall-19c-1.0-2.el8.x86 64.rpm
Loaded plugins: langpacks, ulninfo
Repository ol7_latest is listed more than once in the configuration
Repository ol7_u0_base is listed more than once in the configuration
Repository ol7_u1_base is listed more than once in the configuration
Repository ol7_u2_base is listed more than once in the configuration
Repository ol7_u3_base is listed more than once in the configuration
Repository ol7_u4_base is listed more than once in the configuration
Repository ol7_u5_base is listed more than once in the configuration
Repository ol7_u6_base is listed more than once in the configuration
Repository ol7_security_validation is listed more than once in the configuration
Repository ol7_optional_latest is listed more than once in the configuration
Repository ol7_addons is listed more than once in the configuration
Repository ol7_MODRHCK is listed more than once in the configuration
Repository ol7_latest_archive is listed more than once in the configuration
Repository ol7_optional_archive is listed more than once in the configuration
Repository ol7_UEKR5 is listed more than once in the configuration
Repository ol7_UEKR4 is listed more than once in the configuration
Repository ol7_UEKR3 is listed more than once in the configuration
Repository ol7_UEKR3_OFED20 is listed more than once in the configuration
Repository ol7_UEKR5_RDMA is listed more than once in the configuration
Repository ol7_UEKR4_OFED is listed more than once in the configuration
Repository ol7_UEKR4_archive is listed more than once in the configuration
Repository ol7_UEKR5_archive is listed more than once in the configuration
Repository ol7_kvm_utils is listed more than once in the configuration
Skipping: http://yum1.stanford.edu/mrepo/ol8-x86, filename does not end in .rpm.
Skipping: 64/RPMS.appstream/oracle-database-preinstall-19c-1.0-2.el8.x86, filename does not end in .rpm.
Cannot open: 64.rpm. Skipping.
Nothing to do

答案1

命令中的 URLyum必须是:

  yum -y localinstall http://yum1.stanford.edu/mrepo/ol8-x86_64/RPMS.appstream/oracle-database-preinstall-19c-1.0-2.el8.x86_64.rpm

将下划线 ( ) 替换_为空格 ( )ol8-x86_64

相关内容