• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Need help getting Tomcat to run

i have it downloaded, however when i go to run it from cmd, i get errors saying something about an error with catalina configuration. I am running XP pro. is Linux easier to install it on? i have a gentoo install on this comp too.

MIKE
 
Did you set up the CATALINA_HOME environment variable? need to set that to the install directory of Tomcat.

You may also need to reinstall tomcat if you let go to the default directory. I've never had luck with Tomcat running out of a directory with space in the name ('program files').
 
What I did on my most recent tomcat "install"
-unpack tarball
-move to bin directory
-type startup.sh
-see error message about JAVA_HOME and JRE_HOME
-set JAVA_HOME and JRE_HOME
-startup
-profit

Obviously that was on linux but it shouldn't be any different on windows (you could dig into startup.sh and startup.bat if you want to see if there are any differences). Probably all you need to do is set one of those env variables, or CATALINA_HOME, like bunker said, although I believe it defaults to ".." (one above the bin directory) if you don't. You have to be careful if you do set CATALINA_HOME and then try to do a parallel install without changing the version. Even though you run startup in the new bin directory it'll fire up the old version which can be a little confusing 😕 😉
 
Back
Top