Apache Tomcat/7.0.28, Debian

I have two configuration descriptors in /etc/tomcat7/Catalina/localhost/

One, solr.xml deploys correctly and fills catalina.out with lots of
useful messages.


The other fails silently to start (see below).

I see the message "INFO: Deploying configuration descriptor" in
catalina.out; then there is nothing else in catalina.out.

Is there any way to cause Tomcat to output more debug information? I
haven't been able to narrow an internet search to get useful answers
for this problem.

The most annoying thing is that this has worked fine for at least one
Tomcat 6 installation.

The deployment descriptor is

<Context docBase="/opt/myApp/MyApp.war"
         crossContext="true" >
  <Resource
      name="jdbc/LockDB"
      auth="Container"
      type="javax.sql.DataSource"
      maxActive="100"
      maxIdle="30"
      maxWait="10000"
      removeAbandoned="true"
      testWhileIdle="true"
      timeBetweenEvictionRunsMillis="60000"
      driverClassName="com.mysql.jdbc.Driver"
      username="myApp"
      password="xxxxxx"
      url="jdbc:mysql://127.0.0.1/myApp" />
   <Loader
    className="org.apache.catalina.loader.VirtualWebappLoader"
    virtualClasspath="/opt/myApp/ext/*.jar;/opt/myApp/resources/" />
</Context>


Thanks for any guidance

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org

Reply via email to