wiki:HowTo/en/Installation with MaxDB

Install Corinis with MaxDB

software requirements

  • J2SDK 1.4 (should work with 1.5, but yet untested)
  •  MaxDB (this doc uses 7.6.00 please update if it works for earlier versions)
  • Corinis

software installation

  • Install j2sdk and update classpath
  • install tomcat and make sure it starts correctly
  • unzip the corinis.zip in the webapps dir of tomcat
  • install MaxDB
  • put the jdbc jar file into your tomcat/common/lib directory or in the webapp/WEB-INF/lib directory

getting all to work together

  • setup maxdb (make sure to remember: database name (e.g. corinis) username (e.g. dbadmin) password (e.g. test))
  • install and setup corinis as described in: HowTo/en/Installation
  • edit the corinis/WEB-INF/corinis.xml database section (or more if you want to):
  <DATABASE>
<!-- for SAPDB: -->
    <DRIVER>com.sap.dbtech.jdbc.DriverSapDB</DRIVER>
    <JDBC>jdbc:sapdb://localhost/CORINIS?useUnicode=true&amp;characterEncoding=iso-8859-1</JDBC>
    <USER>dbadmin</USER>
    <PASS>test</PASS>
    <DBSLANG>sapdb</DBSLANG>

    <CONNECTIONS>5</CONNECTIONS>
    <MAXCONNECTIONS>50</MAXCONNECTIONS>
    <DBTIMEOUT>1000</DBTIMEOUT>
    <LOG>auto</LOG>
  </DATABASE>