Moderator: ScalixSupport
I noticed that when it starts up, it creates about 6-8 processes for handling requests. I believe this is correct...
Code: Select all
ps -aef |grep tomcat
Code: Select all
chkconfig --list|grep tomcat
Code: Select all
cat /etc/init.d/tomcat
#!/bin/sh
#
# chkconfig: 345 91 10
#
# description: \
# This is the init script for starting up the Jakarta Tomcat server.
#
# To install this script on a Redhat Linux system, follow these steps:
#
# (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=/opt/tomcat/jakarta-tomcat-5.0.28; export CATALINA_HOME
###### !! YOU SHOULD NOT NEED TO CHANGE ANYTHING BELOW HERE !! ######
# you do not need to change anything below here
# Source function library.
. /etc/init.d/functions
# Get config.
. /etc/sysconfig/network
# Check that networking is up.
[ "${NETWORKING}" = "no" ] && exit 0
startup=$CATALINA_HOME/bin/startup.sh
shutdown=$CATALINA_HOME/bin/shutdown.sh
# Where the Scalix server admin commands live (for Scalix server installed locally)
PATH=$PATH:/opt/scalix/bin; export PATH
# Functions
start(){
action $"Starting Tomcat service: " $startup
RETVAL=$?
}
stop(){
action $"Stopping Tomcat service: " $shutdown
RETVAL=$?
}
restart(){
stop
start
}
# See how we were called.
case "$1" in
start)
start
;;
stop)
stop
;;
restart)
restart
;;
*)
echo $"Usage: $0 {start|stop|restart}"
exit 1
esac
exit 0
Code: Select all
getconf GNU_LIBPTHREAD_VERSION
Code: Select all
2006-01-24 21:33:08,333 FATAL [RESServiceHandler.executeRESCommand:1404] java.lang.reflect.InvocationTargetException
2006-01-24 21:33:08,334 FATAL [RESServiceHandler.executeRESCommand:1412] com.scalix.sac.ubermgr.res.RESServiceHandler:Fatal Exception raised. Check the CAA logs
2006-01-24 21:33:08,338 WARN [GetServerLicenseType.createSOAPResponseMessage:86] Skipping server scalix.medsphere.com no document received.
2006-01-24 21:33:08,624 ERROR [GetMemberAccessGroupList.createSOAPResponseMessage:239]
2006-01-24 21:33:44,225 FATAL [RESServiceHandler.executeRESCommand:1404] java.lang.reflect.InvocationTargetException
2006-01-24 21:33:44,226 FATAL [RESServiceHandler.executeRESCommand:1412] com.scalix.sac.ubermgr.res.RESServiceHandler:Fatal Exception raised. Check the CAA logs
2006-01-24 21:33:44,230 WARN [GetServerLicenseType.createSOAPResponseMessage:86] Skipping server scalix.medsphere.com no document received.
Code: Select all
rpm -q --qf '%{name}-%{version}-%{release}.%{arch}\n' 'glibc'
Code: Select all
glibc-2.3.6-0.fc3.1.i386
Code: Select all
cat /etc/redhat-release
Return to “Scalix Management Services”
Users browsing this forum: No registered users and 7 guests