I am working in a Linux server which comes with tomcat preinstalled(version 6) and we do not have admin access. I am trying to change the log file location(catalina.out), but it is not working.
I updated the tomcat6.conf file by adding the following
CATALINA_BASE="ORIG_LOC_FOLDER"
CATALINA_HOME="ORIG_LOC_FOLDER"
CATALINA_OUT="XXXX/catalina.out"
I restarted tomcat, but it still writes the logs to the old file in the old location. I could not change in the catalina.sh as I cannot find that file. Is there anything else I need to do?
Thanks.