RE: JDBC MySQL again

2002-08-12 Thread Shapira, Yoav


Starting service Tomcat-Standalone
Apache Tomcat/4.0.4
PARSE error at line 1 column 10
org.xml.sax.SAXParseException: Element type web-app must be declared.

Howdy,
I haven't seen your original message, which presumably has to do with
the MySQL error.  However, the above is enough to suggest something is
seriously wrong with the configuration for your web application.  That
could definitely affect the allocation of database drivers and other
things.  

Double-check your web.xml for correctness.  Create a simple servlet or
JSP page in your app that you can run, and verify that it runs OK.
Don't do any DB activity in that page.

Once you have that done, it will be a lot easier to trace what's wrong
with the MySQL stuff.

Yoav Shapira
Millennium ChemInformatics

--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]




RE: JDBC MySQL again

2002-08-12 Thread Mike Jackson

Your class loader looks ok, but you can simplify it to:

Class.forName(org.gjt.mm.mysql.Driver);

But the way you're getting the connection is strange (to my eyes), here's
an easier way (change the url for you instance):

DriverManager.getConnectio(
jdbc:msql://www.myserver.com:1114/contact_mgr,
username, password );

--mikej
-=-
mike jackson
[EMAIL PROTECTED]

 -Original Message-
 From: Jan Willem Penterman [mailto:[EMAIL PROTECTED]]
 Sent: Monday, August 12, 2002 8:15 AM
 To: [EMAIL PROTECTED]
 Subject: JDBC MySQL again


 Hi,

 I searched the archives for a solution to my problem, but couldn't find
 any. Like many, I keep getting the following error:

 SQLException: Cannot connect to MySQL server on localhost:3306. Is there
 a MySQL server running on the machine/port you are trying to connect to?
 (java.net.ConnectException)

 There's no stacktrace like some other people posted, I don't know why
 not.
 I think I got my sourcecode ok. I tried three different approaches:

 Class.forName(org.gjt.mm.mysql.Driver);
 Class.forName(org.gjt.mm.mysql.Driver).newInstance();
 Thread.currentThread().getContextClassLoader().loadClass(org.gjt.mm.mys
 ql.Driver);

 I also got this other stuff in my error log when I start Tomcat, but I
 don't know if that's part of my problem or just the result of me ruining
 other files:

 Starting service Tomcat-Standalone
 Apache Tomcat/4.0.4
 PARSE error at line 1 column 10
 org.xml.sax.SAXParseException: Element type web-app must be declared.
 Server 1.6 is running Press [Ctrl]+[C] to abort Starting service
 Tomcat-Apache Apache Tomcat/4.0.4
 SQLException: Cannot connect to MySQL server on localhost:3306. Is there
 a MySQL server running on the machine/port you are trying to connect to?
 (java.net.ConnectException)

 I got:
 Debian3.0/woody
 Tomcat4.0.4
 j2sdk1.3 (BlackDown FCS)
 Mm.mysql-2.0.14
 MySQL 3.23.49

 JW
 Shapers

 p.s. I have the exact same servlet running fine on
 WindowsXP/Tomcat4.0.3/j2sdk14/mm.mysql-2.0.12/MySQL3.23.49. But I need
 Debian now.

 p.s.2 I have a deju-vu at this moment. Weird :)






 --
 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]




Re: JDBC MySQL again

2002-08-12 Thread Colin Chalmers

Hi,

What happens when you use another version of mysql driver, I was having
trouble with version 14.

/colin

- Original Message -
From: Jan Willem Penterman [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Monday, August 12, 2002 5:14 PM
Subject: JDBC MySQL again


 Hi,

 I searched the archives for a solution to my problem, but couldn't find
 any. Like many, I keep getting the following error:

 SQLException: Cannot connect to MySQL server on localhost:3306. Is there
 a MySQL server running on the machine/port you are trying to connect to?
 (java.net.ConnectException)

 There's no stacktrace like some other people posted, I don't know why
 not.
 I think I got my sourcecode ok. I tried three different approaches:

 Class.forName(org.gjt.mm.mysql.Driver);
 Class.forName(org.gjt.mm.mysql.Driver).newInstance();
 Thread.currentThread().getContextClassLoader().loadClass(org.gjt.mm.mys
 ql.Driver);

 I also got this other stuff in my error log when I start Tomcat, but I
 don't know if that's part of my problem or just the result of me ruining
 other files:

 Starting service Tomcat-Standalone
 Apache Tomcat/4.0.4
 PARSE error at line 1 column 10
 org.xml.sax.SAXParseException: Element type web-app must be declared.
 Server 1.6 is running Press [Ctrl]+[C] to abort Starting service
 Tomcat-Apache Apache Tomcat/4.0.4
 SQLException: Cannot connect to MySQL server on localhost:3306. Is there
 a MySQL server running on the machine/port you are trying to connect to?
 (java.net.ConnectException)

 I got:
 Debian3.0/woody
 Tomcat4.0.4
 j2sdk1.3 (BlackDown FCS)
 Mm.mysql-2.0.14
 MySQL 3.23.49

 JW
 Shapers

 p.s. I have the exact same servlet running fine on
 WindowsXP/Tomcat4.0.3/j2sdk14/mm.mysql-2.0.12/MySQL3.23.49. But I need
 Debian now.

 p.s.2 I have a deju-vu at this moment. Weird :)






 --
 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]




Re: JDBC MySQL again

2002-08-12 Thread Peter T. Abplanalp

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Mon, Aug 12, 2002 at 05:14:46PM +0200, Jan Willem Penterman wrote:
 SQLException: Cannot connect to MySQL server on localhost:3306. Is there
 a MySQL server running on the machine/port you are trying to connect to?
 (java.net.ConnectException)

generally, if you see this problem, your driver is loaded correctly;
however, it is unable to connect to your mysql server.  i would test
this by trying to telnet to port 3306 on localhost and see if you get
a connection.  if you don't, you need to make sure your mysql is
allowing connections over tcp/ip which, if i'm not mistaken, debian
has turned off by default.  look in the /etc/my.cnf or maybe
/etc/mysql/my.cnf or some such for a skip-networking flag and comment
it out if necessary.  restart mysql, try the telnet again.  if it
works, restart tomcat and see if your app works.

another thing to check is if you have some sort of firewall software
enabled that is blocking that particular port.

hth,

- -- 
Peter Abplanalp

Email:   [EMAIL PROTECTED]
PGP: pgp.mit.edu
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.0.7 (GNU/Linux)

iD8DBQE9V9W0ggA8sH0iRXQRAnQcAJ9dEA9G4+Fw3QT7j2IbNeV3h1eEDwCcDcvo
q5X51xanggB0ECObZIx+n2Q=
=e9ia
-END PGP SIGNATURE-

--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]




Re: JDBC MySQL again

2002-08-12 Thread Larry Meadors

Also, if you are using ipchains or iptables as a firewall, you may need
to open a conduit to allow access to port 3306. 

Even on localhost, ipchains will not allow access unless configured to
do so.

Larry

 [EMAIL PROTECTED] 08/12/02 09:35 AM 
generally, if you see this problem, your driver is loaded correctly;
however, it is unable to connect to your mysql server.  i would test
this by trying to telnet to port 3306 on localhost and see if you get
a connection.  

--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]




RE: JDBC MySQL again

2002-08-12 Thread Jan Willem Penterman

 generally, if you see this problem, your driver is loaded 
 correctly; however, it is unable to connect to your mysql 
 server.  i would test this by trying to telnet to port 3306 
 on localhost and see if you get a connection.  if you don't, 
 you need to make sure your mysql is allowing connections over 
 tcp/ip which, if i'm not mistaken, debian has turned off by 
 default.  look in the /etc/my.cnf or maybe /etc/mysql/my.cnf 
 or some such for a skip-networking flag and comment it out if 
 necessary.  restart mysql, try the telnet again.  if it 
 works, restart tomcat and see if your app works.
 
Very good! You're the 'winner' with the right answer! I was thinking my
mysqld setup was ok, since it worked flawlessly with PHP. I guess PHP
and MySQL have some sort of secret 'marriage', and don't connect over
TCP/IP? 

[off-topic]
Is that also the reason that php:mysql seems about twice as fast in
executing queries in comparison to jdbc:mysql? I tested this on my
Windows machine.
[/off-topic]

However, now I get the following exception: 
SQLException: Invalid authorization specification: Access denied for
user: 'root@barrie' (Using password: YES)

My guess is that I have to config mysqld in a way that it accepts this
user (of which I'm pretty sure it has the correct login and password)
from 'barrie' instead of 'localhost' (barrie and localhost essentially
are the same Debian box). But that's not a question to ask to this
list...

Thanks Hoang! (and the rest of you who didn't give the right answer;). I
tried your solutions, and at least I got rid of the parse error that
also was in my catalina.out but that had a different cause).

JW







--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]




Re: JDBC MySQL again

2002-08-12 Thread Peter T. Abplanalp

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Mon, Aug 12, 2002 at 06:57:09PM +0200, Jan Willem Penterman wrote:
  generally, if you see this problem, your driver is loaded 
  correctly; however, it is unable to connect to your mysql 
  server.  i would test this by trying to telnet to port 3306 
  on localhost and see if you get a connection.  if you don't, 
  you need to make sure your mysql is allowing connections over 
  tcp/ip which, if i'm not mistaken, debian has turned off by 
  default.  look in the /etc/my.cnf or maybe /etc/mysql/my.cnf 
  or some such for a skip-networking flag and comment it out if 
  necessary.  restart mysql, try the telnet again.  if it 
  works, restart tomcat and see if your app works.
  
 Very good! You're the 'winner' with the right answer! I was thinking my

yay!  do i get a medal or something?  ;-)

 mysqld setup was ok, since it worked flawlessly with PHP. I guess PHP
 and MySQL have some sort of secret 'marriage', and don't connect over
 TCP/IP? 

probably.

 [off-topic]
 Is that also the reason that php:mysql seems about twice as fast in
 executing queries in comparison to jdbc:mysql? I tested this on my
 Windows machine.
 [/off-topic]

yes.  domain sockets leave out the whole tcp/ip stack and are much
faster.

 However, now I get the following exception: 
 SQLException: Invalid authorization specification: Access denied for
 user: 'root@barrie' (Using password: YES)
 
 My guess is that I have to config mysqld in a way that it accepts this
 user (of which I'm pretty sure it has the correct login and password)
 from 'barrie' instead of 'localhost' (barrie and localhost essentially
 are the same Debian box). But that's not a question to ask to this
 list...

since we're here...

yes, the problem is that when you connect using the mysql tool on the
command line, the client thinks it is localhost; however, java passes
the host name over the connection and thus you must allow the root
user to connect to mysql from that host even thought they are
esentially the same.

as root:

use mysql;
grant all privileges on db.object(s) to root@barrie
identified by 'some_password' [with grant option];
flush privileges;

minor nit - i wouldn't use the root user for these connections.  if
the password is somehow compromised, your *entire* server is
compromised.  if, however, you set up different users for each
database only that particular database will be compromised.

- -- 
Peter Abplanalp

Email:   [EMAIL PROTECTED]
PGP: pgp.mit.edu
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.0.7 (GNU/Linux)

iD8DBQE9V+r/ggA8sH0iRXQRAiEYAJ0fDrn34VaWmFMGXIFqMjzRQH5I6wCguCkx
ldddPETeicqjMdQfm5ZgChc=
=0/8l
-END PGP SIGNATURE-

--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]




RE: JDBC MySQL again

2002-08-12 Thread Jan Willem Penterman

 yay!  do i get a medal or something?  ;-)
 
Yes you get a medal. Only thing is that it is so incredibly heavy that I
can't send it by mail. You have to come pick it up at our office in
Amsterdam :P
O and I gave my thanks to Hoang, but I was mistaken. Thanks Peter!

  [off-topic]
  Is that also the reason that php:mysql seems about twice as fast in 
  executing queries in comparison to jdbc:mysql? I tested this on my 
  Windows machine. [/off-topic]
 
 yes.  domain sockets leave out the whole tcp/ip stack and are 
 much faster.
 
Why on earth they invented JDBC for then? I am really dissappointed by
the lack of performance compared to PHP. The processing of query results
in Java is even worse (about 10 times slower). 

 use mysql;
 grant all privileges on db.object(s) to root@barrie
 identified by 'some_password' [with grant option];
 flush privileges;

You get TWO medals now.

 
 minor nit - i wouldn't use the root user for these 
 connections.  if the password is somehow compromised, your 
 *entire* server is compromised.  if, however, you set up 
 different users for each database only that particular 
 database will be compromised.
 
True. But at this stage it's not that important :)

JW


--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]




Re: JDBC MySQL again

2002-08-12 Thread Peter T. Abplanalp

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Mon, Aug 12, 2002 at 07:45:03PM +0200, Jan Willem Penterman wrote:
 Yes you get a medal. Only thing is that it is so incredibly heavy that I
 can't send it by mail. You have to come pick it up at our office in
 Amsterdam :P

next time i'm in europe, i'll stop by and pick them up.

 Why on earth they invented JDBC for then? I am really dissappointed by
 the lack of performance compared to PHP. The processing of query results
 in Java is even worse (about 10 times slower). 

well, how do propose to get results if your database server isn't on
the same box as your webserver?  ;-)

- -- 
Peter Abplanalp

Email:   [EMAIL PROTECTED]
PGP: pgp.mit.edu
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.0.7 (GNU/Linux)

iD8DBQE9V/aXggA8sH0iRXQRAjPcAJ4yXUPW6542kd1jylikkRj4ohfEKQCgoS+/
Jk5bE6T/ZRLYOLeymzqTOD8=
=DTUQ
-END PGP SIGNATURE-

--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]