First install of Adobe CQ 5.5 product with Oracle 11.2 XE -


i'm configuring adobe cq 5.5 first installation , have problems because in installation process, cq didn't found oracle driver. need use relational database (oracle) rather tar predefined system. in adobe cq documentation, says need configured before installation.

but problem when cq installs, didn't found driver of oracle database.

i have configured file repository.xml as:

    ...     ...     <persistencemanager class="org.apache.jackrabbit.core.persistence.pool.oraclepersistencemanager">         <param name="driver" value="oracle.jdbc.oracledriver" />         <param name="url" value="jdbc:oracle:thin:@127.0.0.1:1521:xe" />         <param name="user" value="crx" />         <param name="password" value="admin" />         <param name="schema" value="oracle" />         <param name="schemaobjectprefix" value="${wsp.name}_" />     </persistencemanager>     ...     ... 

the problem when adobe cq try find oracle driver, fails message in logs:

18.05.2013 17:25:37.946 *error* [felixstartlevel] org.apache.jackrabbit.core.repositoryimpl failed start repository: cannot instantiate persistence manager org.apache.jackrabbit.core.persistence.pool.oraclepersistencemanager javax.jcr.repositoryexception: cannot instantiate persistence manager org.apache.jackrabbit.core.persistence.pool.oraclepersistencemanager ... ... caused by: javax.jcr.repositoryexception: not load jdbc driver class oracle.jdbc.oracledriver ... ... caused by: java.lang.classnotfoundexception: oracle.jdbc.oracledriver not found com.day.crx.sling.server [45] 

and installation stops.

i tried install jackrabbit repository configuration, , runs. put ojdbc6.jar jar file in jre7/lib/ext , in java java_path.

anyone know procedure detection of driver during installation of adobe cq 5.5?

thanks , best regards!

juan carlos.


Comments

Popular posts from this blog

SPSS keyboard combination alters encoding -

Add new record to the table by click on the button in Microsoft Access -

javascript - jQuery .height() return 0 when visible but non-0 when hidden -