Hia guys i've been stuck on this one for a while so any help is
appreciated..
Code works as a normal java application but when I deploy it and try to
hook into a ServletContextListener to start up a MiniAccumuloCluster
I get this error in the Tomcat 7 logs:
SEVERE: Error listenerStart
Oct 26, 2013 10:55:18 AM org.apache.catalina.core.StandardContext
startInternal
SEVERE: Context [<myapp name>] startup failed due to previous errors
.....
INFO: Deploying web application archive
/usr/local/apache-tomcat-7.0.42/<myapp name>
INITIALIZING SERVLET CONTEXT
Oct 26, 2013 10:55:18 AM org.apache.catalina.core.StandardContext
listenerStart
SEVERE: Exception sending context initialized event to listener instance of
class web.servlet.MyServletContextListener
java.lang.RuntimeException: Initialize process returned 1
at
org.apache.accumulo.minicluster.MiniAccumuloCluster.start(MiniAccumuloCluster.java:304)
at
web.servlet.MyServletContextListener.contextInitialized(MyServletContextListener.java:74)
at
org.apache.catalina.core.StandardContext.listenerStart(StandardContext.java:4939)
The MiniAccumuloCluster logs ( Initialize and Main ) display this error:
Error: Could not find or load main class org.apache.accumulo.start.Main
However accumulo-core-1.5.0.jar is present in the WEB-INF/lib directory of
the exploded war...
Thoughs? and thanks in advance,
Miguel