weblogic - SSL debug tracing may be required to determine the exact reason the certificate was rejected -


found below error in logs after starting weblogic. how solve issue? nothing have deployed here, new environment have installed recently.

error message:

apr 23, 2014 10:40:37 pm utc warning security bea-090482 bad_certificate alert received mt-dcs2-admin.com - 60.5.100.20. check peer determine why rejected certificate chain (trusted ca configuration, hostname verification). ssl debug tracing may required determine exact reason certificate rejected.enter code here<

as error says, try enable debug mode see cause of problem.

try this: http://docs.oracle.com/cd/e23943_01/web.1111/e13707/ssl.htm#autoid12

-dssl.debug=true -dweblogic.stdoutdebugenabled=true 

edit (first comment):

you must add these arguments start of weblogic. depending on how run server, you'll have edit run script file.

the standard startup script named startweblogic.cmd if you're running windows , startweblogic.sh if you're running unix (weblogic8). contents of windows , unix startup scripts similar. if run managed servers > startmanagedweblogic.cmd/.sh. (i think so, use jboss).

search in file "java_options=" , add "-dssl.debug=true -dweblogic.stdoutdebugenabled=true", save file (take care line not commented # character, in case should remove # also). when start server (calling script file) throw full stacktrace showing more details ssl problem , point on it's wrong.


Comments

Popular posts from this blog

java - Intellij Synchronizing output directories .. -

git - Initial Commit: "fatal: could not create leading directories of ..." -