RE: problem in telent to mysql server

2002-03-14 Thread Todd Williamsen
Can you telnet into anything else? How about a webserver? Try port 80 or 25 if you have a mail server. If you can't, you need to make sure you have telnet rights -Original Message- From: Jianping Zhu [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 14, 2002 1:58 PM To: [EMAIL

Re: problem in telent to mysql server

2002-03-14 Thread Paul DuBois
At 14:58 -0500 3/14/02, Jianping Zhu wrote: I use: telnet mysqlserverhostname 3306 and get following response: Host 'mylocalcomputer' is not allowed to connect to this MySQL server What does this mean? and how to fix the problem? The MySQL client-server protocol is a binary protocol. It

RE: problem in telent to mysql server

2002-03-14 Thread Jianping Zhu
On Thu, 14 Mar 2002, Todd Williamsen wrote: telbet to webserer is OK, I use telnet thesamename 80 get following messge !DOCTYPE HTML PUBLIC -//IETF//DTD HTML 2.0//EN HTMLHEAD

RE: problem in telent to mysql server

2002-03-14 Thread Todd Williamsen
PROTECTED]] Sent: Thursday, March 14, 2002 2:19 PM To: Jianping Zhu Cc: [EMAIL PROTECTED] Subject: Re: problem in telent to mysql server At 14:58 -0500 3/14/02, Jianping Zhu wrote: I use: telnet mysqlserverhostname 3306 and get following response: Host 'mylocalcomputer' is not allowed to connect

RE: problem in telent to mysql server

2002-03-14 Thread Paul DuBois
PROTECTED] Subject: Re: problem in telent to mysql server At 14:58 -0500 3/14/02, Jianping Zhu wrote: I use: telnet mysqlserverhostname 3306 and get following response: Host 'mylocalcomputer' is not allowed to connect to this MySQL server What does this mean? and how to fix the problem? The MySQL

RE: problem in telent to mysql server

2002-03-14 Thread Jianping Zhu
to use has access rights for the user for telnet -Original Message- From: Paul DuBois [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 14, 2002 2:19 PM To: Jianping Zhu Cc: [EMAIL PROTECTED] Subject: Re: problem in telent to mysql server At 14:58 -0500 3/14/02, Jianping Zhu wrote

RE: problem in telent to mysql server

2002-03-14 Thread Paul DuBois
Thanks for your advices. In the offical mysql webpage, there is a paragraph tell us how to usinng telnet test mysql server connectivity. That test tells you only whether or not there's a MySQL server listening on the port. It doesn't tell you that you should actually try to communicate with

RE: problem in telent to mysql server

2002-03-14 Thread Kenneth Hylton
Howdy - You are trying to telnet to the MySQL server. 3306 is the MySQL Server default port, not the telnet port. If you are trying to run the MySQL client, then: 1) telnet mysqlserverhostname 2) run the Mysql client within your telnet session (mysql -uroot -proot, for example) If you are