英文:
Is there some way to install TLS 1.2 certificate over a WebLogic 8.1 Application without migrate the webserver?
问题
我有一个非常旧的网络应用程序,运行在BEA Weblogic Server 8.1上,使用Java 4 (jdk142_11)。目前我们无法迁移到更新的服务器... 有人认为是否有办法在这个应用程序中安装TLS 1.2证书?我知道这个应用程序非常旧...
谢谢您的回答,即使回答是不可能的。
英文:
I have a very old web application which runs over a BEA Weblogic Server 8.1 with Java 4 (jdk142_11). For the moment we can't migrate to a newer server.. Someone thinks could be a way to install a TLS 1.2 certificate in this application? I know the application is very old...
Thank you for the answer even if the answer is that is not possible.
答案1
得分: 1
在您提供的配置中,这是不可能的。您需要使用最近的JDK 7版本,或者更好的是JDK 8及以上版本。现在,您可以尝试安装JDK 8,并查看它是否与WebLogic 8.1兼容。但请记住,即使它能够运行,Oracle也不会提供支持。当然,我认为Oracle不太可能支持这么旧版本的WebLogic 更好的选择是通过负载均衡器作为应用的前端,让负载均衡器终止SSL连接,并将负载均衡器配置为TLSv1.2。
英文:
In the configuration you have provided, its not possible. You need to be on a recent update of JDK 7 or ideally JDK8 and above. Now, you could try and install JDK8 and see if it works with WebLogic 8.1. Keep in mind though that even if it works, Oracle will not support it. Of course, I dont think Oracle will support such an old version of WebLogic anyway
A better option is to frontend the application using a load balancer, terminating SSL on the load balancer and configuring the load balancer for TLSv1.2.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论