Yaakov,
I you use linux/unix (I suppose yes) you can go to TOMCAT_HOME/bin and do next:
mv catalina.sh catalina.orig.sh
and make new catalina.sh with next line :
PRG="$0"
while [ -h "$PRG" ]; do
ls=`ls -ld "$PRG"`
link=`expr "$ls" : '.*-> \(.*\)$'`
if expr "$link" : '.*/.*' > /dev/null; then
PRG="$link"
else
PRG=`dirname "$PRG"`/"$link"
fi
done
PRGDIR=`dirname "$PRG"`
$PRGDIR/catalina.orig.sh $* -security
or you can see catalina.sh for better ideas
Best