Difference between revisions of "Debugging remote JBoss server"

From OpenKM Documentation
Jump to: navigation, search
m
Line 3: Line 3:
 
<source lang="bash">
 
<source lang="bash">
 
JAVA_OPTS="-Xmx2000m -Djava.awt.headless=true -Xdebug -Xnoagent \
 
JAVA_OPTS="-Xmx2000m -Djava.awt.headless=true -Xdebug -Xnoagent \
-Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=8000 "
+
-Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=8000"
 
</source>
 
</source>
  

Revision as of 14:54, 15 February 2010

If you got problems on production environement this configuration is specially useful. But it might not be setting if you've not problem in these environments. Add this line at the top of $JBOSS_HOME/bin/run.sh script:

JAVA_OPTS="-Xmx2000m -Djava.awt.headless=true -Xdebug -Xnoagent \
-Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=8000"

Configure eclipse

Select the project and the host. Include in source your OpenKM java project. You can debug normally, setting breakpoints etc...


Okm user guide 073.jpeg


Okm user guide 074.jpeg