Versioner sammenlignet

Nøgle

  • Linjen blev tilføjet.
  • Denne linje blev fjernet.
  • Formatering blev ændret.

Indholdsfortegnelse

Requirements

OS Settings

Preferred OS: Linux 64 Bit - 2 CPU's and at lease 3 GB Ram

File Limits Raise

Kodeblok
 

 

Mysql Settings

Preferred Database: Mysql (or Postgres)

Settings for MySQL

...

Kodeblok
<property name="hibernate.c3p0.max_size">30<>50</property>

Make sure that the ?autoReconnect=true is on the jdbc connection

...

Kodeblok
<Connector className="org.apache.coyote.tomcat4.CoyoteConnector" port="8080" address="10.0.0.10" minProcessors="5"
                   maxProcessors="75"
                   enableLookups="false" redirectPort="8443" acceptCount="10" debug="0" connectionTimeout="20000"
                   useURIValidationHack="false" />

To secure correct UTF-8 Handling, add URIEncoding="UTF-8" to the connector:

Kodeblok
<Connector className="org.apache.coyote.tomcat4.CoyoteConnector" port="8080" address="10.0.0.10" minProcessors="5"
                   maxProcessors="75"
                   enableLookups="false" redirectPort="8443" acceptCount="10" debug="0" connectionTimeout="20000"
                   useURIValidationHack="false" URIEncoding="UTF-8" />

If behind a traffic Manager or Apache Proxy, add scheme=, proxyName= and proxyPort to the context:

Kodeblok
<Context path="" docBase="../confluence" debug="0" reloadable="false" useHttpOnly="true" scheme="https" proxyName="jira.example.com" proxyPort="443">

If the Tomcat needs to travel through symbolic links on the filesystem, add the allowLinking="true" to the context:

...