Existing users, log in.  New users, create a free account.  Lost password?

3 comments

It's Tomcat, cool! - jeremymatthews_dotmac

By default, Applescripts (10.3 & 10.4-compatible) are installed (when you install the second starter/stopper package, in /Library/Scripts/Tomcat, as well as 2 shell scripts and 2 Automator actions (10.4 required).

After downloading and decompressing the .DMG, you see a folder called "Scripts". Those are the same scripts (sans shell scripts); you can move those wherever you want; for conveniences' sake!

If you have any suggestions, just give a holler!

Thanks,
SW

Reply to This

Wednesday, June 22 2005 @ 12:17 PM PDT


It's Tomcat, cool! - grikdog

Needs a StartupItem, though. Here's step one...


<pre>
#!/bin/sh

. /etc/rc.common

##
# Start up the Tomcat server on Mac OS X
#
#

StartService ()
{

ConsoleMessage "Starting Tomcat server..."
/Library/Scripts/Tomcat/start_tomcat 2>&1 >/dev/null

}

StopService()
{

ConsoleMessage "Stopping Tomcat server..."
/Library/Scripts/Tomcat/stop_tomcat 2>&1 >/dev/null

}

RestartService ()
{
StopService
StartService
}


RunService "$1"


</pre>

Reply to This

Monday, July 04 2005 @ 01:22 PM PDT


It's Tomcat, cool! - jeremymatthews_dotmac

Thanks; already created a startup item that should be released in the next 10 days.

-SW

Reply to This

Tuesday, July 05 2005 @ 06:00 AM PDT