在安装oracle 12c 发行版1的时候,报错[ins-08109] 验证状态 'clientSupportedOSCheck' 的输入时出现意外错误。
死活不给过,点击继续也没用。各种百度加谷歌查询了半天,黄天不负有心人终于在stack overflow上找到了解决办法,如下:
原因:If the administrative shares are not enabled when performing a single instance Oracle Database or Oracle Client installation for 12c Release 1 (12.1) on Microsoft Windows 7, Microsoft Windows 8, and Microsoft Windows 10, then the installation fails with an INS-30131 error.(ps:同样适用[ins-08109]):如果在Microsoft Windows 7,Microsoft Windows 8和Microsoft Windows 10上执行12c第1版(12.1)的单实例Oracle数据库或Oracle客户端安装时未启用管理共享,则安装将失败,并显示INS-30131错误。
解决:
1、管理员身份运行cmd.exe
2、命令行执行oracle steup.exe文件路径下
3、输入以下命令:
For a client installation:
setup.exe -ignorePrereq -J"-Doracle.install.client.validate.clientSupportedOSCheck=false"
For a server installation:
setup.exe -ignorePrereq -J"-Doracle.install.db.validate.supportedOSCheck=false
4、回车确认。
文章写得比较仓促,作为一个笔记吧!!!最后附上问题链接: