D3 is known to work against these versions:
We assume here that you have successfully installed Tomcat in folder TOMCAT_HOME and that you have already downloaded D3 (or built it yourself). Let's call USER_HOME the Tomcat process owner home
This is a simple installation, for more complex configuration options (f.i. configuring virtual hosts, integrating with apache, etc.) please refer to Tomcat documentation.
<!-- Define a non-SSL HTTP/1.1 Connector on port 8080 -->
compression="on" compressionMinSize="2048" noCompressionUserAgents="gozilla, traviata" compressableMimeType="text/html,text/xml,text/javascript,application/x-javascript,application/javascript"
<Connector port="8080" maxHttpHeaderSize="8192" maxThreads="150" minSpareThreads="25" maxSpareThreads="75" enableLookups="false" redirectPort="8443" acceptCount="100" connectionTimeout="20000" disableUploadTimeout="true" compression="on" compressionMinSize="2048" noCompressionUserAgents="gozilla, traviata" compressableMimeType="text/html,text/xml,text/javascript,application/x-javascript,application/javascript" />
You may need to restart Tomcat for the changes to be applied.
jdbc.driver=com.mysql.jdbc.Driver jdbc.host=<<edit to your convenience>> jdbc.port=<<edit to your convenience>> jdbc.database=<<edit to your convenience>> jdbc.username=<<edit to your convenience>> jdbc.password=<<edit to your convenience>>
Note that the database must exist prior to starting D3.