Have a look at /usr/share/doc/start_up.txt or /usr/share/doc/start_up.ps on a HP-UX 
11.00 machine 
for details of how to write a startup script conforming to HP-UX's standards (for 
issuing messages 
at startup and shutdown via the 'start_msg' and 'stop_msg' parameters, honouring the 
settings in 
/etc/rc.config.d etc...). 

You can use any of the scripts in /sbin/init.d as a basis - modify one as appropriate 
and 
get it to simply call catalina.sh. 

We also modified our catalina.sh to check which userid was calling the script. If it
was root it would sudo to the non-privileged user that Tomcat ran under ('tomcat'). If
it was userid 'tomcat' calling it it would simply continue. If it was anyone else, it
would exit with an error message. This way we get Tomcat started as a non-privileged 
user 
starting automatically on boot.

Regards,
Morgan



> -----Original Message-----
> From: Eric J. Pinnell [mailto:[EMAIL PROTECTED] 
> Sent: Friday, August 08, 2003 02:11
> To: Tomcat Users List
> Subject: RE: Starting tomcat from init scripts (HP/UX) 
> 
> 
> Tim is right.  In HP/UX there is a default start script (I 
> forget what it's called).  You plug in the name of your 
> service and add any other stuff it might need.  You define 
> you service as being active somewhere else.  (I know I'm not 
> much help but it's been a while).
> 
> That way when it starts you get the [OK] message.
> 
> -e
> 
> On Thu, 7 Aug 2003, Lott, Carey wrote:
> 
> > I tried calling the startup.sh instead of catalina.sh, but 
> I had the 
> > same outcome.  It executes the first part of the script 
> which displays 
> > the variables that are being used, but it doesn't do 
> anything more.  
> > We haven't been able to find any errors to give us an idea 
> of what the 
> > problem is.  I'm sorry I think I forgot to say in the initial email 
> > that I am running Tomcat 4.0.4 on HP/UX 11.00.  I appreciate any 
> > suggestions you can offer.
> >
> > <signature>
> > <name>Carey Lott</name>
> > <pos>Web Tools Support</pos>
> > <org>Infrastructure Storage & Tools Support</org> 
> > <company>EDS</company> <account>BellSouth</account>
> > <phone>404-529-6676</phone>
> > <email>[EMAIL PROTECTED]</email>
> > <ipager>[EMAIL PROTECTED]</ipager>
> > </signature>
> >
> >
> > <disclaimer>
> > *****
> > "The information transmitted is intended only for the 
> person or entity 
> > to which it is addressed and may contain confidential, proprietary, 
> > and/or privileged material.  Any review, retransmission, 
> dissemination 
> > or other use of, or taking of any action in reliance upon, this 
> > information by persons or entities other than the intended 
> recipient 
> > is prohibited.  If you received this in error, please contact the 
> > sender and delete the material from all computers." </disclaimer>
> >
> >
> > -----Original Message-----
> > From: Eric J. Pinnell [mailto:[EMAIL PROTECTED]
> > Sent: Thursday, August 07, 2003 2:11 PM
> > To: Tomcat Users List
> > Subject: Re: Starting tomcat from init scripts (HP/UX)
> >
> >
> > Hi,
> >
> > It's been a while since I tinkered with HP/UX but it seems 
> to me that 
> > you can set all your varibles in the default tomcat start 
> scripts and 
> > then call the default startup.sh and shutdown.sh.
> >
> > -e
> >
> > On Thu, 7 Aug 2003, Lott, Carey wrote:
> >
> > > Hi,
> > > The above subject is based on the exact same topic I found in the 
> > > archives from back in January, but no solution was ever 
> posted.  We 
> > > are having the exact same problem that Pascal was having.  We are 
> > > trying to start tomcat from an init script at boot time.  
> I have the 
> > > needed variables in the init script, and the init script calls 
> > > catalina.sh directly.  Below is a copy of my script.  I have used 
> > > the script to stop and start tomcat manually without a problem.  
> > > However, when Tomcat tries to start at boot time the run control 
> > > information states that it can't start as root, and it is 
> going to 
> > > try as bin, but it is unsuccessful.  Does anybody know why it 
> > > wouldn't be able to start as root?  What can I do to fix this?
> > >
> > > Init script:
> > > -------------------------------------------------------------
> > > #!/bin/sh
> > > # Start/Stop for Tomcat Java Servlet Container
> > > #
> > >
> > > CATALINA_HOME="/bto/appl/apache/jakarta-tomcat-4.0.4"
> > >         export CATALINA_HOME
> > > JAVA_HOME="/opt/java1.4"
> > >         export JAVA_HOME 
> > > 
> CLASSPATH="/bto/appl/apache/jakarta-tomcat-4.0.4/common/lib/servlet.
> > > ja
> > > r:/opt
> > >
> > 
> /java1.4/jre/lib/rt.jar:/opt/java1.4/lib/tools.jar:/opt/java1.4/lib/dt
> > .jar:/
> > >
> > 
> opt/java1.4/lib/htmlconverter.jar:/opt/java1.4/jre/lib/charsets.jar:/o
> > pt/jav
> > >
> > 
> a1.4/jre/lib/javaplugin.jar:/opt/java1.4/jre/lib/ext/dnsns.jar:/opt/ja
> > va1.4/
> > >
> > 
> jre/lib/ext/localedata.jar:/opt/java1.4/jre/lib/ext/ldapsec.jar:/opt/j
> > ava1.4
> > >
> > 
> /jre/lib/jce.jar:/opt/java1.4/jre/lib/jsse.jar:.:/bto/appl/apache/jaka
> > rta-to
> > >
> > 
> mcat-4.0.4/webapps/esd/WEB-INF/classes:/bto/appl/apache/jakarta-tomcat
> > -4.0.4
> > >
> > 
> /webapps/esd/WEB-INF/lib:/bto/appl/apache/htdocs/esd/java:/bto/sys/ora
> > cle/pr
> > > oduct/8.0.6/jdbc/lib/classes111.zip"
> > >         export CLASSPATH
> > >
> > > case $1 in
> > >         'start')
> > >                 
> > > /bto/appl/apache/jakarta-tomcat-4.0.4/bin/catalina.sh
> > > start
> > > >> 
> /bto/appl/apache/jakarta-tomcat-4.0.4/logs/bootlogstart.txt 2>&1 
> > > >> &
> > >                 ;;
> > >         'stop')
> > >                 
> > > /bto/appl/apache/jakarta-tomcat-4.0.4/bin/catalina.sh
> > > stop
> > > >> 
> /bto/appl/apache/jakarta-tomcat-4.0.4/logs/bootlogstop.txt 2>&1 &
> > >                 ;;
> > > esac
> > > ----------------------------------------------------------------
> > >
> > > Thank you for any help you can offer.
> > > Carey
> > >
> > > <signature>
> > > <name>Carey Lott</name>
> > > <pos>Web Tools Support</pos>
> > > <org>Infrastructure Storage & Tools Support</org> 
> > > <company>EDS</company> <account>BellSouth</account> 
> > > <email>[EMAIL PROTECTED]</email> 
> > > <ipager>[EMAIL PROTECTED]</ipager>
> > > </signature>
> > >
> > > 
> --------------------------------------------------------------------
> > > -
> > > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > > For additional commands, e-mail: 
> [EMAIL PROTECTED]
> > >
> > >
> >
> > 
> ---------------------------------------------------------------------
> > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > For additional commands, e-mail: [EMAIL PROTECTED]
> >
> > 
> ---------------------------------------------------------------------
> > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > For additional commands, e-mail: [EMAIL PROTECTED]
> >
> >
> >
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 
> 

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to