I follow the steps of this thread :

when I try to start the domain (jasperserver) I got this error in Tomcat Manager :

FAIL - Application at context path /jasperserver could not be started

hereunder the Catalina.out log

2010-11-29 12:39:12,842 ERROR [/jasperserver],http-8080-Processor22:3767 - Exception sending context initialized event to listener instance of class com.jaspersoft.jasperserver.war.util.SpringBeanServletContextPlublisher org.springframework.beans.factory.BeanCreationException org.apache.tomcat.dbcp.dbcp.SQLNestedException: Cannot load JDBC driver class 'com.mysql.jdbc.Driver' [See nested exception: org.apache.tomcat.dbcp.dbcp.SQLNestedException: Cannot load JDBC driver class 'com.mysql.jdbc.Driver']]

link|improve this question
Oh and please edit this Q to avoid the horizontal scroll bar of doom :) – Martijn Verburg Nov 29 '10 at 12:56
Are you trying to use mysql? You mentioned Oracle in your headline. It might just need the connection configuration changed. – JOTN Nov 29 '10 at 13:04
yup, I follow the steps in this thread to change configuration to Oracle Database and I'm not willing to connect to mysql DB – karimhammoda Nov 29 '10 at 16:59
feedback

3 Answers

You need to add JDBC driver in your classpath .

link|improve this answer
but I already reconfigure it to work on oracle Database & Oracle Driver , why I need Mysql Driver ? – karimhammoda Nov 29 '10 at 13:02
1  
@karimhammoda there might be some misconfiguration ,error message says it is searching for JDBC-MySQL Driver – Jigar Joshi Nov 29 '10 at 13:05
Thanks a lot for your help – karimhammoda Nov 29 '10 at 13:26
1  
@karimhammoda there is some might be some network issue, check your firewall, try connecting your DB from its client,try figure out the issue. – Jigar Joshi Nov 29 '10 at 16:36
feedback

It can't load your JDBC driver, make suer that the JAR file representing your driver (mySQL in this case) is on your CLASSPATH (probably in the lib directory of the web/application server you are running)

link|improve this answer
Thanks a lot for your help – karimhammoda Nov 29 '10 at 13:26
You're welcome! – Martijn Verburg Nov 29 '10 at 13:33
I try it and I got another error : – karimhammoda Nov 29 '10 at 16:16
2010-11-29 19:12:53,569 ERROR JDBCExceptionReporter,main:101 - Cannot create PoolableConnectionFactory (Could not create connection to database server. Attempted reconnect 3 times. Giving up.) 2010-11-29 19:12:53,582 WARN SettingsFactory,main:133 - Could not obtain connection to query metadata org.apache.tomcat.dbcp.dbcp.SQLNestedException: Cannot create PoolableConnectionFactory (Could not create connection to database server. Attempted reconnect 3 times. Giving up.) – karimhammoda Nov 29 '10 at 16:17
Raise that as a new question with the full stack trace please. – Martijn Verburg Nov 29 '10 at 16:48
feedback

Resolved :

I must reconfigure jasperserver.xml file found in apache-tomcat-5.5.20/conf/Catalina/localhost folder the same way I reconfigure context.xml file in jasperserver META-INF folder

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.