Our office has partnered with Alfresco and have been given enterprise licenses to install their software. We are working off of RHEL6 application servers with tomcat6 installed via the command yum install tomcat* as well as the necessary java packages:
java-1.5.0-gcj.x86_64 1.5.0.0-29.1.el6 @distro
java-1.6.0-openjdk.x86_64 1:1.6.0.0-1.39.1.9.8.el6_1 @updates
java-1.6.0-sun.x86_64 1:1.6.0.26-1jpp.1.el6 @supplementary
java-1.6.0-sun-devel.x86_64 1:1.6.0.26-1jpp.1.el6 @supplementary
java-1.6.0-sun-jdbc.x86_64 1:1.6.0.26-1jpp.1.el6 @supplementary
java_cup.x86_64 1:0.10k-5.el6 @distro
tomcat6-javadoc.noarch 6.0.24-33.el6 @optional
tzdata-java.noarch 2011g-1.el6 @distro
apache-tomcat-apis.noarch 0.1-1.el6 @distro
tomcat6.noarch 6.0.24-33.el6 @distro
tomcat6-admin-webapps.noarch 6.0.24-33.el6 @optional
tomcat6-docs-webapp.noarch 6.0.24-33.el6 @optional
tomcat6-el-2.1-api.noarch 6.0.24-33.el6 @distro
tomcat6-javadoc.noarch 6.0.24-33.el6 @optional
tomcat6-jsp-2.1-api.noarch 6.0.24-33.el6 @distro
tomcat6-lib.noarch 6.0.24-33.el6 @distro
tomcat6-servlet-2.5-api.noarch 6.0.24-33.el6 @distro
tomcat6-webapps.noarch 6.0.24-33.el6 @optional
tomcatjss.noarch 2.1.0-1.el6 @distro
After properly extracting the .war files into tomcat's webapps directory (as well as all other directories including shared, lib, etc...) and restarting tomcat via the command service tomcat6 restart it fails to extract the alfresco.war and share.war inside of the webapps directory. I've seen articles discuss use of a startup.sh script that does not exist anywhere within my tomcat6 directory, and I assumed that restarting via the aforementioned command would be the equivalent. Any possible ideas on how to get tomcat to extract on RHEL6 using the yum version of tomcat6? By the way, as mentioned elsewhere on stackoverflow, I have also set the following variables in the /etc/profile file:
export CATALINA_HOME=/var/www/tomcat6
export JAVA_HOME=/usr/lib/jvm/java-1.6.0-sun-1.6.0.26.x86_64/
$JAVA_HOME contains the directories: bin, include, jre, and lib, assuming that is what I need to consider my JAVA_HOME. Am I mistaken?