I'm trying to setup Apache Tomcat 7 for some work. I need to get it done, but I think I've setup things incorrectly. What is the right way? I'm using NetBeans, and have set the install directory for the server in the Netbeans folder under Applications.
4 Answers
I used the Bitnami installer available at https://bitnami.com/stack/tomcat/installer to do this. Let someone else worry about the details, I say.
Bitnami make good installers (and VMs) for a large range of this sort of stuff.
- 610
Another option is to go with Pivotal tc Server Developer Edition, which is a free drop-in replacement for Apache Tomcat.
Installing it on OSX straightforward. First, open Terminal then install HomeBrew if you don't have it:
ruby -e "$(curl -fsSL https://raw.github.com/Homebrew/homebrew/go/install)"
Next, run the following Homebrew command:
brew tap pivotal/tap && brew install tcserver
This will connect to the Pivotal HomeBrew repository, then download and install tc Server. From there you can follow the instructions in the Terminal.
Full disclosure: I work for Pivotal and am part of the tc Server product team, and one of our goals is to make it super easy to get started with tc Server on OSX. Any questions, you can reach me at @alsargent on Twitter.
- 7,466
- 31