Time for action – viewing the deployment of an application in the server.log

The following steps will show the deployment of an application in the server.log:

  1. Let's look for errors in the server.log file:
    grep ERROR server.log
    

    Good, no ERROR. (Yes, the logs are case-sensitive.)

  2. Let's move on and look for logging information related to JBoss ESB by "grepping" the server.log:
    grep ESB server.log
    

What just happened?

There they are, the very .esb archives that we discussed earlier:

2011-04-14 21:21:40,998 INFO  [org.jboss.resource.connectionmanager.ConnectionFactoryBindingService] (main) Bound ConnectionManager ‘jboss.jca:service=DataSourceBinding,name=JBossESBDS' to JNDI name ‘java:JBossESBDS'
2011-04-14 21:21:41,009 INFO  [org.jboss.internal.soa.esb.dependencies.DatabaseInitializer] (main) Initializing java:/JBossESBDS from listed sql files
2011-04-14 21:21:41,132 INFO  [org.jboss.soa.esb.listeners.deployers.mc.EsbDeployment] (main) Starting ESB Deployment ‘jbossesb.esb'
2011-04-14 21:21:42,788 INFO  [org.quartz.impl.StdSchedulerFactory] (main) Quartz scheduler ‘ESBScheduler:jbossesb.esb' initialized from an externally provided properties instance.
2011-04-14 21:21:42,789 INFO  [org.quartz.core.QuartzScheduler] (main) Scheduler ESBScheduler:jbossesb.esb_$_NON_CLUSTERED started.
2011-04-14 21:21:45,645 INFO  [org.jboss.soa.esb.listeners.deployers.mc.EsbDeployment] (main) Starting ESB Deployment ‘jbpm.esb'
2011-04-14 21:21:52,498 INFO  [org.jboss.soa.esb.listeners.deployers.mc.EsbDeployment] (main) Starting ESB Deployment ‘jbrules.esb'
2011-04-14 21:21:53,567 INFO  [org.jboss.soa.esb.listeners.deployers.mc.EsbDeployment] (main) Starting ESB Deployment ‘slsb.esb'
2011-04-14 21:21:53,614 INFO  [org.jboss.soa.esb.listeners.deployers.mc.EsbDeployment] (main) Starting ESB Deployment ‘smooks.esb'
2011-04-14 21:21:56,000 INFO  [org.jboss.soa.esb.listeners.deployers.mc.EsbDeployment] (main) Starting ESB Deployment ‘soap.esb'
2011-04-14 21:22:07,005 INFO  [org.jboss.soa.esb.listeners.deployers.mc.EsbDeployment] (main) Starting ESB Deployment ‘spring.esb'
..................Content has been hidden....................

You can't read the all page of ebook, please click here login for view all page.
Reset