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

Mac OS X  |  Web & Software Development  |  Other Developer Tools  |  Tomcat by SW  |  It's Tomcat, cool!

Tomcat by SW

Tomcat by SW

installer for Apache Tomcat & other components

Version:  4.2 5.5.23

   [ Views: 2118 ]

It's Tomcat, cool!

Feedback Type:  Commentary

Contributed by: grikdog Wednesday, June 22 2005 @ 11:30 AM PDT

Product Platform: MacOSX

Used Product For: Less than a month

Recommend Product: YES

There's other ways to install Tomcat on a Mac, but this is pretty painless, especially if you just need the cat to check out another package, like e.g., blojsom. It's possible to get this up and running without even looking at the docs, just keep track of the AppleScript start and stop scripts.   

1 of 3 users found this helpful.

Rate this Commentary

Was this Commentary helpful? Yes | No

Comments

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