Page 1 of 1
Cannot get the log on pages to display
Posted: Wed Nov 02, 2005 7:49 pm
by Michael Goode
I have just done the installation. When I try to connect through the web browser I get a "connection denied". I am using tomcat 5.5.12.
Posted: Wed Nov 02, 2005 8:15 pm
by ScalixSupport
Are you using FC4 ? If so, please see the sticky post at the top of this forum
http://www.scalix.com/community/viewtopic.php?t=720
Even if you are not, tomcat 5.5.x is not a supported tomcat installation. We provide tomcat 5.0.28 in the installation bundle in the third_party/ directory.
Cheers
Dave
Posted: Sun Nov 27, 2005 6:13 am
by clemi
My solution to this problem was to restart the tomcat service.
in the tomcat_home-Dir /bin/ ./catalina.sh run
now I am going to find out how to logon..
yours
Clemens
Posted: Sun Nov 27, 2005 1:30 pm
by ScalixSupport
Hi,
In the admin_resource_kit directory you will find a file called tomcat. If you edit that file you will see the following instructions to make Tomcat run as a service...
# (1) log in as root
# (2) copy this script to /etc/rc.d/init.d
# (3) enter "chmod 755 /etc/rc.d/init.d/tomcat"
# (4) edit the script using vi or your favorite editor and ensure that CATALINA_HOME points
# to the location of your Tomcat directory
# (5) enter "chkconfig --add tomcat"
# (6) enter "chkconfig --level 345 tomcat on" to enable Tomcat in run levels
# 3, 4 and 5.
#
# Tomcat will now be configured to start as a system service when the
# machine boots.
#
# (7) enter "service tomcat start" to manually start Tomcat and
# "service tomcat stop" to manually stop Tomcat.
#
# This script has been tested on Redhat Enterprise Linux 3.0
#
###### !! PLEASE CHANGE THE FOLLOWING LINE TO MATCH YOUR ENVIRONMENT !! ######
CATALINA_HOME=/home/jakarta-tomcat-5.0.28; export CATALINA_HOME
###### !! YOU SHOULD NOT NEED TO CHANGE ANYTHING BELOW HERE !! ######
Thanks,
Don