No, there is nothing analogous to the command line window that pops up in Windows in Linux when starting tomcat.
Windows is a poor operating system for running services. Linux/UNIX is a proper operating system for running services...there is no need to startup another process to run tomcat on Linux. Tomcat (and other services) simply run as they should. If you post error messages, and possibly snippets of your log files, and what you've done to try and resolve any of them, it would be much easier for someone to help. We don't even know what Linux you are using. That said, depending on the version of Linux you are using, and the version of tomcat, you can determine if something is running with the "ps" command. "man ps" will provide you with help, in general tomcat can be seen running by looking for lines that have "java" in them, after using the command: "ps -ef" A shorthand way of doing this is "ps -ef |grep java". John Turner [EMAIL PROTECTED] > -----Original Message----- > From: neal [mailto:[EMAIL PROTECTED]] > Sent: Monday, August 26, 2002 2:46 AM > To: Tomcat Users List > Subject: Tomcat log in linux > > > In Windows, when you run Tomcat, a DOS command line window > pops up and you > see real-time messages from Tomcat. If something isn't going > right ... you > see those messages. Is there something analogous in > Linux/Tomcat? I'm > trying to get the dumb thing running but I'm not seeing any > debug info and > the logs look relatively empty. > > Thanks. > NEal > > > -- > To unsubscribe, e-mail: > <mailto:[EMAIL PROTECTED]> > For additional commands, e-mail: > <mailto:[EMAIL PROTECTED]> > -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
