RE: Tomcat and MySQL error

2006-07-27 Thread DK
Thanks again to all ! Did a grep -R on /usr/local and got the file. It is /usr/local/jakarta/webapps/website/WEB-INF/struts-config.xml and the line that I had to modify was Everything works fine now and Thanks again to all of you !! DK -- View this message in context: http://www.nabble.com/T

RE: Tomcat and MySQL error

2006-07-27 Thread Propes, Barry L
try the base of usr/local -Original Message- From: DK [mailto:[EMAIL PROTECTED] Sent: Thursday, July 27, 2006 12:48 PM To: users@tomcat.apache.org Subject: RE: Tomcat and MySQL error Thanks to all of you ! I did a search (grep -R) under the /usr/local/jakarta and /etc folder for this

RE: Tomcat and MySQL error

2006-07-27 Thread DK
Thanks to all of you ! I did a search (grep -R) under the /usr/local/jakarta and /etc folder for this string but found no results. I am still wondering as which file carries this value. Thanks again, DK -- View this message in context: http://www.nabble.com/Tomcat-and-MySQL-error-tf2007556.htm

RE: Tomcat and MySQL error

2006-07-27 Thread Propes, Barry L
somewhere, likely server.xml, you've got an ODBC setting pointing to the IP address or domain name of the old box. Do a global search -- find file or with contents of your old box IP address/name to find the file(s) that contain said string. -Original Message- From: DK [mailto:[EMAIL P

Re: Tomcat and MySQL error

2006-07-27 Thread David Smith
The answer depends on how the MySQL connection is made and where. Tomcat doesn't offer just one way to handle this or just one place to configure it. The MySQL connection string can be in server.xml or the web application itself. You might want to do a search to see where "www.old-domain.com

Re: Tomcat and MySQL error

2006-07-26 Thread Madhur K Tanwani
I'm not sure if you asked the question at the right place. Anyways, I think there would be some configuration file / code snippet which uses the "www.old-domain.com:3306" while forming the connection URL, which is passed to the getConnection(, , ) method. Hope it helps, Madhur. DK wrote: He