zoukankan      html  css  js  c++  java
  • Windows平台安装Oracle11.2.0.4客户端报错INS-30131

    之前为解决EXP-00003错误给出了安装Oracle11.2.0.4的解决方案,自己测试是没问题的,客户自己安装反馈遇到报错INS-30131,MOS有一篇文章:

    • E1: DB: Error INS-30131 While Installing Oracle 32 or 64 Bit Client 12.1.2.0 with Windows OS (Doc ID 2100301.1)

    虽然MOS提到的版本是12.1.2.0,但是实际验证客户安装11.2.0.4版本客户端遇到的也是一样的问题。
    MOS提供的solution如下:

    Follow these steps to complete the installation.
    
    1. Enable administrative share for C$ ( Consult your Windows System Administrator for this) Refer Microsoft document http://support.microsoft.com/kb/314984 for details.
    2. Verify if the share is enabled using below steps:
    
    - net use \<hostname>c$ should work
    - dir \<hostname>c$ should work
    - the current user (i.e. user in administrator group) should have all privileges on the default share
    
    3. Retry the installation of 32 Bit Oracle Client
    4. Remove the administrative share again
    
    Workaround is available to install database client software if administrative shares is not enabled:
    
    For client installs, run the installer with following arguments:
    
    setup.exe -ignorePrereq -J"-Doracle.install.client.validate.clientSupportedOSCheck=false"
    For server installs, run the installer with following arguments:
    
    setup.exe -ignorePrereq -ignorePrereq -J"-Doracle.install.db.validate.supportedOSCheck=false"
    

    总结就是两种解决方案:
    方案一是启用c$的共享,安装完毕后可以取消。
    方案二属于Workaround,即通过ignorePrereq参数进行安装,需注意安装客户端和服务端的参数有区别。

    实际客户环境,通过方案一,启用c$的共享后即可顺利安装。

  • 相关阅读:
    iOS 9适配技巧(更新版)
    VC/MFC 在ListCtl 控件中随鼠标移动提示单元格信息
    VC++ 编译libcurl 支持SSL,GZIP
    qt使用动态库(DLL)
    解决修改mysql的data_dir所引发的错误
    Mybatis实战之TypeHandler高级进阶
    Mybatis实战之自定义TypeHandler处理枚举
    shell编程其实真的很简单(五)
    shell编程其实真的很简单(四)
    shell编程其实真的很简单(三)
  • 原文地址:https://www.cnblogs.com/jyzhao/p/13394916.html
Copyright © 2011-2022 走看看