Java 如何找到weblogic t3 adminurl
声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow
原文地址: http://stackoverflow.com/questions/23582240/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me):
StackOverFlow
How to find weblogic t3 adminurl
提问by Muthuveerappan
I have a weblogic folder, From this - How can i find the adminurl that I can use with the below command
我有一个 weblogic 文件夹,从这里 - 我如何找到可以与以下命令一起使用的 adminurl
java weblogic.Deployer –adminurl t3://server:7001 –username system –password weblogic –listapps
I tried looking into setupinfo.txt, portlist.ini - but somehow this did not help/work. How can get this working?
我尝试查看 setupinfo.txt、portlist.ini - 但不知何故这没有帮助/工作。如何让这个工作?
I get errors/exceptions like these (after few attempts)
我收到这样的错误/异常(几次尝试后)
The loading of the trusted certificate list raised a certificate parsing exception PKIX: Unsupported OID in the AlgorithmIdentifier object
Unable to connect to 'http://server:7001': Destination unreachable; java.net.ConnectException: Tried all: 1 addresses, but could not connect over HTTPS to server: localhost port: 7102; No available router to destination
based on setupinfo.txt, I am able to login to the web console - but I need to know how to get this command working with adminurl !!!
基于 setupinfo.txt,我可以登录到 Web 控制台 - 但我需要知道如何让这个命令与 adminurl 一起工作!!!
Thanks,
谢谢,
回答by Muthuveerappan
Got it, thanks Alex.
明白了,谢谢亚历克斯。
Steps
脚步
Find startscript.xml under your weblogic domain , search this file for "ADMIN_URL"
The same can be done by web console UI ..... Admin Console Login to AdminConsole->Server->Configuration->ListenPort (enable and note down the port)
在您的 weblogic 域下找到 startscript.xml,在此文件中搜索“ADMIN_URL”
同样可以通过 Web 控制台 UI 完成..... 管理控制台登录到 AdminConsole->Server->Configuration->ListenPort(启用并记下端口)
Bingo.
答对了。