facebook

Finding Tomcat 6 logfiles when used as a server in Eclipse

  1. MyEclipse Archived
  2.  > 
  3. Application Servers and Deployment
Viewing 15 posts - 1 through 15 (of 27 total)
  • Author
    Posts
  • #294262 Reply

    Mary
    Member

    I have Tomcat 6.0 installed as my server within MyEclipse 6.5. I’m having problems delivering pages at different times so would definitely find it useful to be able to readily go to the log files. i just can’t seem to find the Tomcat log files. Can you help me?

    Thanks.

    #294268 Reply

    ernestz
    Member

    When using the integrated “MyEclipse Tomcat6”, the location of the log files would depend on your log configuration. Are you logging to ${catalina.home}, or ${catalina.base}?

    Either way, to find theses locations, use Window -> Preferences -> MyEclipse Enterprise Workbench -> Servers -> Integrated Sandbox -> MyEclipse Tomcat 6 -> Launch, click on Create Launch Configuration, select the Arguments tab and the VM Arguments will show the default values for these two properties.

    #294288 Reply

    Mary
    Member

    Thank you so very much for the information you provided. I have used the VM arguments in an ordinary Eclipse environment. I am not familiar with using Tomcat integrated into MyEclipse so I’m struggling with the configuration.

    Here are my VM arguments:

    -Dcatalina.home=C:/Java/JavaSource/plugins/com.genuitec.eclipse.easie.tomcat.myeclipse_6.5.0.zmyeclipse650200806/tomcat

    -Dcatalina.base=C:/development/.metadata/.plugins/com.genuitec.eclipse.easie.tomcat.myeclipse/tomcat

    -Djava.endorsed.dirs=C:/Java/JavaSource/plugins/com.genuitec.eclipse.easie.tomcat.myeclipse_6.5.0.zmyeclipse650200806/tomcat/common/endorsed

    -Djava.io.tmpdir=C:/development/.metadata/.plugins/com.genuitec.eclipse.easie.tomcat.myeclipse/tomcat/temp

    -Djava.library.path=”C:/Program Files/Java/jre1.6.0_05/bin;C:/Java/JavaSource/plugins/com.genuitec.eclipse.easie.tomcat.myeclipse_6.5.0.zmyeclipse650200806/tomcat/bin”

    -Dsun.io.useCanonCaches=false

    I don’t believe I have logging configured. Can you tell me how to do that in this environment?

    Thank you so much.

    #294297 Reply

    ernestz
    Member

    How is your application logging information? Using something like Apache Commons Logging? Log4J? Both of these use configuration files.

    Or, are you simply using System.out/System.err?

    #294318 Reply

    Mary
    Member

    I am realizing I have not set up any logging. What do you recommend? This is the first project I’ve done that wasn’t already in the works so to speak. Usually the logging was already configured. What I am most wanting to see now is why I’m getting “404’s” instead of the page I am trying to access. I thought if I could see the server logs, I would know what the path the server is using to try to locate the files I’m not delivering or accessing. These are the servlets i want to access from my jsp’s. They are in a package within the application. So, I’m wanting to see what Tomcat is writing to it’s log files, not application error message right now.

    #294334 Reply

    ernestz
    Member

    I don’t really use the integrated MyEclipse Tomcat server very much, and just tested and realized that even my own apps (which to do logging) when deployed to the MyEclipse Tomcat 6 server are not producing log files. There is something about the integrated MyEclipse Tomcat 6 server that is different than my stand-alone Tomcat 6 server.

    I would have to examine/compare a standard Tomcat 6 server setup with the integrated MyEclipse Tomcat 6 server, but don’t really have time at the moment.

    This may be something MyEclipse support may be able to address and possibly explain the logging differences in the integrated MyEclipse Tomcat 6 and standard/standalone Tomcat6 servers.

    #294338 Reply

    ernestz
    Member

    @ernestz wrote:

    I don’t really use the integrated MyEclipse Tomcat server very much, and just tested and realized that even my own apps (which to do logging) when deployed to the MyEclipse Tomcat 6 server are not producing log files.

    I just discovered I tested with a simple application which does not actually log (oops). Another application I am working on that does do logging actually logs as expected. So application logging should work as expected.

    It is just regular Tomcat logging that appears to be an issue.

    #294343 Reply

    Mary
    Member

    I appreciate your help; you have given me some things to think about and implement. Can you recommend a tutorial or guide to implementing either of the application logging mechanisms you mentioned?

    Thanks again.

    #294399 Reply

    ernestz
    Member

    Typically I use Log4J http://logging.apache.org/log4j/1.2/index.html.

    As far as logs for the integrated MyEclipse Tomcat 6 server, I found out that the default configuration fails to define the required properties to perform server logging.

    You will have to add the following property definitions to the integrated MyEclipse Tomcat 6 configuration. Use the following menu items, Window -> Perferences -> MyEclipse Enterprise Workbench -> Servers -> Integrated Sandbox -> MyEclipse Tomcat6 -> JDK. On the right pane, you will see a text box labelled Optional Java VM arguments. You should be able to copy/paste the following property definitions into that text box and save the changes.

    -Djava.util.logging.manager=org.apache.juli.ClassLoaderLogManager
    -Djava.util.logging.config.file=”C:/development/.metadata/.plugins/com.genuitec.eclipse.easie.tomcat.myeclipse/tomcat /conf/logging.properties”

    (The path use above is the catalina.base property you specified in your earlier post.)

    #294432 Reply

    Mary
    Member

    Thanks; I will try this tonight and review the use of log4j. I know I have used it in the past. Coming along here now. Thank you.

    #294440 Reply

    Mary
    Member

    I am thinking these two values do not make sense:

    -Dcatalina.home=C:/Java/JavaSource/plugins/com.genuitec.eclipse.easie.tomcat.myeclipse_6.5.0.zmyeclipse650200806/tomcat

    -Dcatalina.base=C:/development/.metadata/.plugins/com.genuitec.eclipse.easie.tomcat.myeclipse/tomcat

    They should be more the same I think; your comment made me take a closer look.

    #294449 Reply

    ernestz
    Member

    For a normal Tomcat install, catalina.home and catalina.base default to the same value. But, catalina.home specifies the path to the actual Tomcat binaries.

    catalina.base can be set to another path for the actual ‘data’ files, such as logs, configuration, webapps, etc.

    #294498 Reply

    Mary
    Member

    Unfortunately I am still very confused. How can I determine which of my values are correct for the embedded Tomcat server with MyEclipse? How can I confirm where the “actual Tomcat binaries” are that I am using? I had read the home and base should be the same if I am using one install of Tomcat which I believe I am. I do have an independent installation of Tomcat on my laptop; but I am trying to use the embedded server. That is supposed to be simpler. that is my goal right now.

    #294500 Reply

    Mary
    Member

    Unfortunately I am still very confused. How can I determine which of my values are correct for the embedded Tomcat server with MyEclipse? How can I confirm where the “actual Tomcat binaries” are that I am using? I had read the home and base should be the same if I am using one install of Tomcat which I believe I am. I do have an independent installation of Tomcat on my laptop; but I am trying to use the embedded server. That is supposed to be simpler. that is my goal right now.

    Basically I am not sure whether the value of the base or the home is correct as they are now configured. My deepest appreciation.

    #294506 Reply

    ernestz
    Member

    The values supplied for the embedded Tomcat6 server in MyEclipse are correct. The catalina.home points to the binaries for the Tomcat server. The catalina.base points to the location of your conf/, webapps/, temp/, logs/.

    MyEclipse’s Tomcat configuration is setup by default and works ‘out of the box’. With the exception of server logging which was pointed out in another thread.

Viewing 15 posts - 1 through 15 (of 27 total)
Reply To: Finding Tomcat 6 logfiles when used as a server in Eclipse

You must be logged in to post in the forum log in