Improving JBoss 5 slow startup

30,948

Solution 1

A shot into the blue sky without more information

  • Network timeouts: 1,5 minutes of delay when deploying jmx-console.war may indicate a network timeout (e.g. 3 x 30 seconds). Try to start JBoss and bind it to a specific IP address using the -b command line argument or the jboss.bind.address system property. Also, try to make sure your host and DNS resolution settings on your system are correct.

  • JMX is also using RMI and you may want to set the RMI server host name as system property. On some Linux distributions, RMI has problems with looking up the correct hostname and jmx-console.war may try to connect to the 'wrong localhost'. The system property is java.rmi.server.hostname

  • System tracing: If that does not help, you may want to use strace to start the java process, so you can see the point where the system hangs (if it really does hang due to a network timeout or similar).

Solution 2

That is an awfully big gap in the logs. I suggest changing the log configuration to log everything at DEBUG level, rather than INFO. This will generate an awful lot more log entries, but hopefully will help you narrow it down.

The easiest way to do this is to set the -Djboss.server.log.threshold=DEBUG system property when you start JBoss

Solution 3

I had an issue like this but I found a good improvement by setting the initial and max heap size to same values, I mean:

 -Xms512m -Xmx512m

With this, I improved from 4 to 2 minutes the starting time.

Solution 4

Your suspicion about the jmx-console can be misleading. There may be other components doing work in the background unrelated to the jmx-console. In my experience, we had an issue where a small war file appeared to take 3 minutes to load! It was innocent. The culprit was partly due to an EAR file with many wars and jars.

While I'm no expert, I would suggest the following:

  1. Try turning up the logging to TRACE. By doing this, I witnessed one of the deployers (EJBDeployer, I think) unnecessarily scanning WARs in one of our EARs. I then manually disabled the scanning of those WAR files.
  2. Run wireshark during the startup. I discovered some war files were hanging while waiting for a response from an external DTD request. Those websites were either now non-existent or would not properly serve the DTD files to java-based programs. I could speed it up by either having the programmers use local DTD files or mirroring those DTDs locally and having /etc/host loopback locally.

Solution 5

You could refer to this link to avoid unnecessary annotation scanning which could speedup your server start

Share:
30,948
Tarun Bhargav
Author by

Tarun Bhargav

a java bean and a python egg

Updated on January 13, 2020

Comments

  • Tarun Bhargav
    Tarun Bhargav over 4 years

    We upgraded from JBoss 4 (and JDK 5) to JBoss 5 (and JDK 6). The problem is that the start time has gone from 1.5 minutes (on JBoss 4) to more than 4 minutes.

    18:53:35,444 INFO  [ServerImpl] JBoss (Microcontainer) [5.1.0.GA (build: SVNTag=JBoss_5_1_0_GA date=200905221053)] Started in 3m:9s:262ms
    

    It seems like the component that is taking JBoss the longest time to initialize is the JMX

    18:50:41,926 INFO  [LogNotificationListener] Adding notification listener for logging mbean "jboss.system:service=Logging,type=Log4jService" to server org.jboss.mx.server.MBeanServerImpl@1adc122[ defaultDomain='jboss' ]
    18:52:38,797 INFO  [JMXConnectorServerService] JMX Connector server: service:jmx:rmi://lharel2/jndi/rmi://lharel2:1090/jmxconnector
    

    From the DEBUG server log, I get these lines at the problematic time:

    2009-12-18 18:51:00,886 DEBUG [org.jboss.deployment.MappedReferenceMetaDataResolverDeployer] (main) vfsfile:/C:/QC/Views/QCDev/jboss-5.1.0.GA/server/default/deploy/jmx-console.war/ endpoint mappings:
    2009-12-18 18:51:00,886 DEBUG [org.jboss.deployment.MappedReferenceMetaDataResolverDeployer] (main) Processing unit=jmx-console.war, structure: jmx-console.war
    2009-12-18 18:52:35,209 DEBUG [org.jboss.deployment.OptAnnotationMetaDataDeployer] (main) Deployment is metadata-complete, skipping annotation processing, ejbJarMetaData=null, jbossWebMetaData=org.jboss.metadata.web.spec.Web23MetaData@1f, jbossClientMetaData=null, metaDataCompleteIsDefault=false
    

    There is no EJB in the project.

    The memory settings are:

     -Xms128m -Xmx512m -XX:MaxPermSize=256m
    

    Do you have any idea how JBoss start time can be improved?

    Update: so far no luck, I tried shreeni's suggestion (changed the scanning xmls). The server is not running in debug mode so MicSim's suggestion is not relevant

  • Tarun Bhargav
    Tarun Bhargav over 14 years
    well, it's not consistent, I changed the log level to DEBUG and now it takes 1.5 minutes to start :-). once the problem is reproduced I will post the debug logs
  • skaffman
    skaffman over 14 years
    Hmm, still not much useful info in the log. Try TRACE logging? :)
  • Tarun Bhargav
    Tarun Bhargav over 14 years
    this one looks promising, indeed we switched from JDK 5 to JDK6. But what do you mean change settings, where do I find these debug settings?
  • MicSim
    MicSim over 14 years
    The main point are the options you pass to the JVM when starting JBOSS. So you shouldn't start the JVM with options -Xnoagent and -Djava.compiler=NONE when using -Xdebug. (see the missing lines in second part) The above sample is about the Java Service Wrapper (wrapper.tanukisoftware.org/doc/english/…). Here is an explanation about running JBOSS as a service using JSW: community.jboss.org/wiki/RunJBossAsAServiceOnWIndows.
  • Mohamed Alaa
    Mohamed Alaa over 14 years
    please put an explanation with your down vote (just to learn from it)
  • Luis C.
    Luis C. almost 14 years
    WEHERE IS THE PROPERTIES FILE TO SET THIS INFORMATION!?!?!?
  • Karma police
    Karma police over 13 years
    for a better explanation check this link: petefreitag.com/articles/gctuning at section: 3.1 Total Heap
  • Jason
    Jason almost 13 years
    That would be either in the JBoss bin directory (run.bat, run.conf.bat), or in your IDE if you're running it on your dev machine.
  • Lyle
    Lyle over 9 years
    I was having issues with the "wrong localhost" lookup and my integration test would pause for up to a minute. Setting -Djava.rmi.server.hostname=127.0.0.1 solved it for me, thanks!
  • James Oravec
    James Oravec over 8 years
    I had a similar issue to the hostname, where my /etc/hosts file had the name of my dev machine listed twice. This was enough to slow down the load from about 30 seconds to about 5 minutes.