暂无图片
暂无图片
暂无图片
暂无图片
暂无图片

Oracle https请求失败

askTom 2018-02-07
2404

问题描述

嗨,团队,

我们正在使用http请求,现在工作正常,我们正计划进入https,因为我已经在12c上执行了以下步骤-

创建钱包-
$ orapki钱包创建-钱包/u01/应用程序/Oracle/钱包-pwd密码 @ 123-自动登录

现在导出证书并添加到钱包-

$ orapki钱包添加-钱包/u01/应用程序/Oracle/钱包-托管 _ 证书/u01/应用程序/Oracle/钱包/证书 "-pwd密码 @ 123

但是当我调用函数像-

从DUAL中选择DISTANCE_NEW(18.104641,70.298475,17.541326,78.393676);

获取低于错误-

ORA-29273: HTTP请求失败
ORA-29024: 证书验证失败
ORA-06512: 在 “SYS.UTL_HTTP”,第368行
ORA-06512: 在 “SYS.UTL_HTTP”,第1118行
ORA-06512: 在 “测试.距离 _ 新”,第21行
29273. 00000-“HTTP请求失败”
* 原因: UTL_HTTP包无法执行HTTP请求。
* 操作: 使用get_detailed_sqlerrm检查详细的错误消息。
修复错误并重试HTTP请求。


专家解答

看看这张纸条

“SSL钱包在DB升级到12c后不起作用 (Doc ID 2229851.1)”

SYMPTOMS
Recently upgrade the database to 12.1.0.2 release.

11g wallet (worked before upgrade) doesn't work after the upgrade.
---
SQL >select utl_http.request(' https://',null,'file:','' ) from dual;

*
ERROR at line 1:
ORA-29273: HTTP request failed
ORA-29024: Certificate validation failure
ORA-06512: at "SYS.UTL_HTTP", line 1491
ORA-06512: at line 1


CAUSE
12C only need root and intermediate certificate(s), not any site certificate.


SOLUTION
Create a new wallet in 12C, import only the root and intermediate certs shows on the certificate chain. Or remove the site cert(s) from old wallet. If there are lot of extra certs in old wallet, create a new one and import the correct certs is easier.

「喜欢这篇文章,您的关注和赞赏是给作者最好的鼓励」
关注作者
【版权声明】本文为墨天轮用户原创内容,转载时必须标注文章的来源(墨天轮),文章链接,文章作者等基本信息,否则作者和墨天轮有权追究责任。如果您发现墨天轮中有涉嫌抄袭或者侵权的内容,欢迎发送邮件至:contact@modb.pro进行举报,并提供相关证据,一经查实,墨天轮将立刻删除相关内容。

评论