Install Tomcat6
From AlfrescoWiki
Tomcat 6 does not ship with several of the directories that were present in Tomcat 5.x
For example, the shared/classes and shared/lib directories.
Since Alfresco is set to use the configuration override files found in shared/classes/alfresco/extension this can cause a problem.
To configure Tomcat6 to pick up these files again is:
- Locate <TOMCAT_HOME>.
- Create the <TOMCAT_HOME>/shared/classes/ directory and copy the extension files to create the following directories:
../shared/classes/alfresco/extension/<files> (available in alfresco.war in /WEB-INF/classes/alfresco/extension) ../shared/classes/alfresco/messages/<files> (available in the alfresco package in /extensions/messages) ../shared/classes/alfresco/web-extension/<files> (available in the alfresco package in /extensions/web-extension)
- Open the <TOMCAT_HOME>/conf/catalina.properties file.
- Change the value of shared.loader= to the following:
- shared.loader=${catalina.base}/shared/classes,${catalina.base}/shared/lib/*.jar
- One further change is that Tomcat6 does away with the common/lib directory, so you need to copy the JDBC drivers for the database you are using to the lib/ directory.
- According to the PDF files, you also need to copy commons-el.jar into lib
Tomcat 5.x also used to have a common/endorsed directory, which no longer exists in Tomcat 6.x. If you are using Java SE 6, then copy any JARS that needed to go into Tomcat's common/endorsed into ...jdk6/jre/lib/endorsed directory.
Back to Server Installation

