Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the default debug port for WebLogic?

WebLogic default running port is 7001, so what is default debug port, or is it the same as running port?

I have deployed an application on WebLogic, now I am able to access it through url - http://localhost:7001/myapp

Now I am setting debug mode in Eclipse. What I need to give as debug port there?

like image 967
Rahul ray Avatar asked Oct 15 '25 17:10

Rahul ray


2 Answers

The default port of weblogic 12.1.3 is 8453

like image 108
Ady Junior Avatar answered Oct 18 '25 08:10

Ady Junior


Edit

weblogic_home_directory/bin/setDomainEnv.sh file and add this on top & configure debug port for weblogic

DEBUG_PORT=${DEBUG_PORT:=8000} 
JAVA_OPTIONS="$JAVA_OPTIONS -Xrunjdwp:transport=dt_socket,address=$DEBUG_PORT,server=y,suspend=n" 

Hope this helps

like image 39
Mohit Singh Avatar answered Oct 18 '25 06:10

Mohit Singh



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!