Weblogic: check Weblogic's Java version Follow
This article describes how to check which Java version the weblogic server uses.
1. Make sure that the weblogic server is running
2. Run the WLST (WebLogic Scripting Tool)
Navigate to: C:\Oracle\Middleware\Oracle_Home\wlserver\common\bin
Run: wlst.cmd
3. Run the following:
(replace <username> and <password> before running command-by-command)
connect('<username>', '<password>', 't3://localhost:7101’)
serverRuntime()
jvm = cmo.getJVMRuntime()
print("JVM Version:", jvm.getJavaVersion())
Result:
('JVM Version:', '1.8.0_71')
Comments
0 comments
Please sign in to leave a comment.