Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

How do I install Tomcat as a service under Unixunmigrated-wiki-markup

No Format

 

...

#!/bin/sh
 

...

# chkconfig: - 85 15
 

...

# description: Tomcat is a servlet container
 PROGRAM=$CATALINA_HOME/bin/catalina.sh
 if 

...

[ -f $PROGRAM 

...

]; then
        echo "$1ing" 

...

`basename $0`
        su - tomcat -c "$PROGRAM $1"
 fi

...

How do I add a question to this page?

...