I\'m manually running tomcat 6 as a windows service on the console. I need to change java_opts before starting it. How do I do that? Also, Is there a way I can see the logs dyna
To alter the $JAVA_OPTS
, you will probably need to edit the batch file you use to start Tomcat. I don't run Tomcat on Windows, but the $JAVA_OPTS
appears in my catalina.sh
inside the bin/
directory on my Linux installation.
As far as viewing logs dynamically on Windows, there are a couple of options I'm aware of.
tail -f logfilename
like you would in Linux.