Re: Telnet to MySQL (Was port number)

2001-06-14 Thread sanborn

I was indeed trying to test a remote connection to mysql server.  I am
actually trying to get JDBC working from a client that does not have MySQL
installed, and was just trying to use telnet to see if the connection
worked.  I have discovered that I must install a JDBC driver of some kind on
the server with MySQL, which I am working on now.  I guess I have to grant
permission to the client from the mysql server for this test.

Gene.

- Original Message -
From: Neil Zanella [EMAIL PROTECTED]
To: Dibo Chen [EMAIL PROTECTED]
Cc: sanborn [EMAIL PROTECTED]; MySQL Mailing List
[EMAIL PROTECTED]
Sent: Wednesday, June 06, 2001 4:43 PM
Subject: Re: Telnet to MySQL (Was port number)



 On Wed, 6 Jun 2001, Dibo Chen wrote:

  use 'mysql -h server_machine -u user_name -p ' to connect/query your
  MySQL server. You don't need telnet.

 My apologies for introducing some confusion here. You can use telnet to
test
 whether mysqld accepts incoming connections from the host on which you
 are running telnet in case you do not have mysql already installed on the
 client computer. If however the mysql client is already installed on the
 client host you may just as well use it directly. If the telnet connection
 was successful you should see the mysql version and some other garbage.
 If the site is firewalled then telnet and mysql client should hang.

 Bye,

 Neil



-
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/   (the list archive)

To request this thread, e-mail [EMAIL PROTECTED]
To unsubscribe, e-mail [EMAIL PROTECTED]
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php




Telnet to MySQL (Was port number)

2001-06-06 Thread sanborn

Thanks for your many answers.  (mysql port default = 3306) .  I can't seem
to telnet to port 3306 however, I get a message saying '... not allowed to
connect to this mysql server'.  I am telneting from a windows machine if
this makes a difference.

Gene Sanborn



Re: Telnet to MySQL (Was port number)

2001-06-06 Thread Dibo Chen

use 'mysql -h server_machine -u user_name -p ' to connect/query your
MySQL server. You don't need telnet.


sanborn wrote:
 
 Thanks for your many answers.  (mysql port default = 3306) .  I can't seem
 to telnet to port 3306 however, I get a message saying '... not allowed to
 connect to this mysql server'.  I am telneting from a windows machine if
 this makes a difference.
 
 Gene Sanborn

-
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/   (the list archive)

To request this thread, e-mail [EMAIL PROTECTED]
To unsubscribe, e-mail [EMAIL PROTECTED]
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php




Re: Telnet to MySQL (Was port number)

2001-06-06 Thread Neil Zanella


If you really want to connect from the windows client computer then you
must execute the grant statement on the server but this may expose you
to security risks. In this case it would be best to have both computers
behind a firewall.

Neil

On Wed, 6 Jun 2001, sanborn wrote:

 Thanks for your many answers.  (mysql port default = 3306) .  I can't seem
 to telnet to port 3306 however, I get a message saying '... not allowed to
 connect to this mysql server'.  I am telneting from a windows machine if
 this makes a difference.

 Gene Sanborn



-
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/   (the list archive)

To request this thread, e-mail [EMAIL PROTECTED]
To unsubscribe, e-mail [EMAIL PROTECTED]
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php




Re: Telnet to MySQL (Was port number)

2001-06-06 Thread Gerald Clark

Well, it is not a telnet port, so why are you telnetting to it?

sanborn wrote:

 Thanks for your many answers.  (mysql port default = 3306) .  I can't seem
 to telnet to port 3306 however, I get a message saying '... not allowed to
 connect to this mysql server'.  I am telneting from a windows machine if
 this makes a difference.
 
 Gene Sanborn


-- 
Gerald L. Clark
[EMAIL PROTECTED]


-
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/   (the list archive)

To request this thread, e-mail [EMAIL PROTECTED]
To unsubscribe, e-mail [EMAIL PROTECTED]
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php




Re: Telnet to MySQL (Was port number)

2001-06-06 Thread Jeremy Zawodny

On Wed, Jun 06, 2001 at 10:01:17AM -0700, sanborn wrote:

 Thanks for your many answers.  (mysql port default = 3306) .  I
 can't seem to telnet to port 3306 however, I get a message saying
 '... not allowed to connect to this mysql server'.  I am telneting
 from a windows machine if this makes a difference.

You do not telnet to port 3306 to communicate with MySQL. This is a
mistake folks have made in the past, and it is farily well documented
in the mailing list archives. Please look there and let us konw if you
still need help.

Jeremy
-- 
Jeremy D. Zawodny, [EMAIL PROTECTED]
Technical Yahoo - Yahoo Finance
Desk: (408) 349-7878Fax: (408) 349-5454Cell: (408) 439-9951

MySQL 3.23.29: up 12 days, processed 76,289,685 queries (72/sec. avg)

-
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/   (the list archive)

To request this thread, e-mail [EMAIL PROTECTED]
To unsubscribe, e-mail [EMAIL PROTECTED]
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php




Re: Telnet to MySQL (Was port number)

2001-06-06 Thread Neil Zanella


On Wed, 6 Jun 2001, Dibo Chen wrote:

 use 'mysql -h server_machine -u user_name -p ' to connect/query your
 MySQL server. You don't need telnet.

My apologies for introducing some confusion here. You can use telnet to test
whether mysqld accepts incoming connections from the host on which you
are running telnet in case you do not have mysql already installed on the
client computer. If however the mysql client is already installed on the
client host you may just as well use it directly. If the telnet connection
was successful you should see the mysql version and some other garbage.
If the site is firewalled then telnet and mysql client should hang.

Bye,

Neil


-
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/   (the list archive)

To request this thread, e-mail [EMAIL PROTECTED]
To unsubscribe, e-mail [EMAIL PROTECTED]
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php




Telnet into MySQL

2001-05-21 Thread Tim Thorburn

Hello,

Can someone here recommend a good Telnet program (with SSH) that I can use 
to connect to my servers MySQL database?

Preferably something shareware/freeware - but if it must be purchased, I'm 
not against that.

Thank you

-Tim


-
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/   (the list archive)

To request this thread, e-mail [EMAIL PROTECTED]
To unsubscribe, e-mail [EMAIL PROTECTED]
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php




RE: Telnet into MySQL

2001-05-21 Thread Angerer, Chad

go to www.ssh.com .. I beleieve there a few nice clients there.

Chad

-Original Message-
From: Tim Thorburn [mailto:[EMAIL PROTECTED]]
Sent: Monday, May 21, 2001 3:21 PM
To: [EMAIL PROTECTED]
Subject: Telnet into MySQL


Hello,

Can someone here recommend a good Telnet program (with SSH) that I can use 
to connect to my servers MySQL database?

Preferably something shareware/freeware - but if it must be purchased, I'm 
not against that.

Thank you

-Tim


-
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/   (the list archive)

To request this thread, e-mail [EMAIL PROTECTED]
To unsubscribe, e-mail
[EMAIL PROTECTED]
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php

-
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/   (the list archive)

To request this thread, e-mail [EMAIL PROTECTED]
To unsubscribe, e-mail [EMAIL PROTECTED]
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php




Re: Telnet into MySQL

2001-05-21 Thread Carl Schrader

CRT (www.vandyke.com)

Tim Thorburn wrote:

 Hello,

 Can someone here recommend a good Telnet program (with SSH) that I can use
 to connect to my servers MySQL database?

 Preferably something shareware/freeware - but if it must be purchased, I'm
 not against that.

 Thank you

 -Tim

 -
 Before posting, please check:
http://www.mysql.com/manual.php   (the manual)
http://lists.mysql.com/   (the list archive)

 To request this thread, e-mail [EMAIL PROTECTED]
 To unsubscribe, e-mail [EMAIL PROTECTED]
 Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php


-
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/   (the list archive)

To request this thread, e-mail [EMAIL PROTECTED]
To unsubscribe, e-mail [EMAIL PROTECTED]
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php




Re: Telnet into MySQL

2001-05-21 Thread Peter L. Berghold

On Mon, May 21, 2001 at 03:21:10PM -0500, Tim Thorburn spake thusly:
*] Can someone here recommend a good Telnet program (with SSH) that I can use 
*] to connect to my servers MySQL database?
*] 
Tim,

You don't use telnet to connect to the MySQL database... You use the 
mysql client

-- 
-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Peter L. Berghold[EMAIL PROTECTED]
Schooner Technology Consulting   http://www.berghold.net
Unix Professional ServicesPerl Perl/CGI mod_perl 

-
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/   (the list archive)

To request this thread, e-mail [EMAIL PROTECTED]
To unsubscribe, e-mail [EMAIL PROTECTED]
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php




Re: Telnet into MySQL

2001-05-21 Thread harm

On Mon, May 21, 2001 at 05:13:44PM -0400, Peter L. Berghold wrote:
 On Mon, May 21, 2001 at 03:21:10PM -0500, Tim Thorburn spake thusly:
 *] Can someone here recommend a good Telnet program (with SSH) that I can use 
 *] to connect to my servers MySQL database?
 *] 

Seeing your mailclient (X-Mailer: QUALCOMM Windows Eudora Version 5.1) you
probably want one for a windows box :)
Try Putty:
http://www.google.com/search?q=putty.exe
small and light. 

 Tim,
 
 You don't use telnet to connect to the MySQL database... You use the 
 mysql client

Well yeah. Asking the right question is an art ;)


Good luck,



-- 
The Moon is Waning Crescent (2% of Full)
  nieuw.nl - 2dehands.nl

-
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/   (the list archive)

To request this thread, e-mail [EMAIL PROTECTED]
To unsubscribe, e-mail [EMAIL PROTECTED]
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php




Re: Telnet into MySQL

2001-05-21 Thread Paul DuBois

At 3:21 PM -0500 5/21/01, Tim Thorburn wrote:
Hello,

Can someone here recommend a good Telnet program (with SSH) that I 
can use to connect to my servers MySQL database?

Preferably something shareware/freeware - but if it must be 
purchased, I'm not against that.

Thank you

-Tim

Unless you're thinking about some kind of Telnet program that you can use
to set up an SSH forwarder, this won't work.  You don't Telnet directly to the
MySQL server; it speaks a binary protocol.


-- 
Paul DuBois, [EMAIL PROTECTED]

-
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/   (the list archive)

To request this thread, e-mail [EMAIL PROTECTED]
To unsubscribe, e-mail [EMAIL PROTECTED]
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php




Re: Telnet into MySQL

2001-05-21 Thread massey


Any good ones for the Windozes version..When I use just regular ol Telnet I get Smiley 
and clovers and hearts and the version.

Cheers

-Original Message-
FROM: Eric Fitzgerald
TO: Angerer, Chad, 'Tim Thorburn', [EMAIL PROTECTED]
DATE: Mon 5/21/01 15:58
SUBJECT: Re: Telnet into MySQL

I really prefer SecureCRT from VanDyke software myself.  Perfect blend of
features and simplicity for my needs.  It has a shareware version that does
expire, but the license is cheap for it.  Go to www.vandyke.com and download
the shareware version to give it a try.
- Original Message -
From: Angerer, Chad [EMAIL PROTECTED]
To: 'Tim Thorburn' [EMAIL PROTECTED]; [EMAIL PROTECTED]
Sent: Monday, May 21, 2001 1:58 PM
Subject: RE: Telnet into MySQL


 go to www.ssh.com .. I beleieve there a few nice clients there.

 Chad

 -Original Message-
 From: Tim Thorburn [mailto:[EMAIL PROTECTED]]
 Sent: Monday, May 21, 2001 3:21 PM
 To: [EMAIL PROTECTED]
 Subject: Telnet into MySQL


 Hello,

 Can someone here recommend a good Telnet program (with SSH) that I can use
 to connect to my servers MySQL database?

 Preferably something shareware/freeware - but if it must be purchased, I'm
 not against that.

 Thank you

 -Tim


 -
 Before posting, please check:
http://www.mysql.com/manual.php   (the manual)
http://lists.mysql.com/   (the list archive)

 To request this thread, e-mail [EMAIL PROTECTED]
 To unsubscribe, e-mail
 [EMAIL PROTECTED]
 Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php

 -
 Before posting, please check:
http://www.mysql.com/manual.php   (the manual)
http://lists.mysql.com/   (the list archive)

 To request this thread, e-mail [EMAIL PROTECTED]
 To unsubscribe, e-mail [EMAIL PROTECTED]
 Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php





-
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/   (the list archive)

To request this thread, e-mail [EMAIL PROTECTED]
To unsubscribe, e-mail [EMAIL PROTECTED]
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php



-
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/   (the list archive)

To request this thread, e-mail [EMAIL PROTECTED]
To unsubscribe, e-mail [EMAIL PROTECTED]
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php




Re[2]: Telnet into MySQL

2001-05-21 Thread Olexandr Vynnychenko

Hello Eric,

Tuesday, May 22, 2001, 12:23:24 AM, you wrote:

EF I really prefer SecureCRT from VanDyke software myself.  Perfect blend of
EF features and simplicity for my needs.  It has a shareware version that does
EF expire, but the license is cheap for it.  Go to www.vandyke.com and download
EF the shareware version to give it a try.
EF - Original Message -
EF From: Angerer, Chad [EMAIL PROTECTED]
EF To: 'Tim Thorburn' [EMAIL PROTECTED]; [EMAIL PROTECTED]
EF Sent: Monday, May 21, 2001 1:58 PM
EF Subject: RE: Telnet into MySQL


 go to www.ssh.com .. I beleieve there a few nice clients there.

 Chad

 -Original Message-
 From: Tim Thorburn [mailto:[EMAIL PROTECTED]]
 Sent: Monday, May 21, 2001 3:21 PM
 To: [EMAIL PROTECTED]
 Subject: Telnet into MySQL


 Hello,

 Can someone here recommend a good Telnet program (with SSH) that I can use
 to connect to my servers MySQL database?

 Preferably something shareware/freeware - but if it must be purchased, I'm
 not against that.

 Thank you

 -Tim


 -
 Before posting, please check:
http://www.mysql.com/manual.php   (the manual)
http://lists.mysql.com/   (the list archive)

 To request this thread, e-mail [EMAIL PROTECTED]
 To unsubscribe, e-mail
 [EMAIL PROTECTED]
 Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php

 -
 Before posting, please check:
http://www.mysql.com/manual.php   (the manual)
http://lists.mysql.com/   (the list archive)

 To request this thread, e-mail [EMAIL PROTECTED]
 To unsubscribe, e-mail [EMAIL PROTECTED]
 Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php





EF -
EF Before posting, please check:
EFhttp://www.mysql.com/manual.php   (the manual)
EFhttp://lists.mysql.com/   (the list archive)

EF To request this thread, e-mail [EMAIL PROTECTED]
EF To unsubscribe, e-mail [EMAIL PROTECTED]
EF Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php

The best is PuTTY http://www.chiark.greenend.org.uk/~sgtatham/putty.
It's absolutely free.

-- 
Best regards,
 Olexandrmailto:[EMAIL PROTECTED]



-
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/   (the list archive)

To request this thread, e-mail [EMAIL PROTECTED]
To unsubscribe, e-mail [EMAIL PROTECTED]
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php




Re: Telnet into MySQL

2001-05-21 Thread Colin Faber

hahah

Check out SecureCRT it's a wonderful product and well worth the price.


[EMAIL PROTECTED] wrote:
 
 Any good ones for the Windozes version..When I use just regular ol Telnet I get 
Smiley and clovers and hearts and the version.
 
 Cheers
 
 -Original Message-
 FROM: Eric Fitzgerald
 TO: Angerer, Chad, 'Tim Thorburn', [EMAIL PROTECTED]
 DATE: Mon 5/21/01 15:58
 SUBJECT: Re: Telnet into MySQL
 
 I really prefer SecureCRT from VanDyke software myself.  Perfect blend of
 features and simplicity for my needs.  It has a shareware version that does
 expire, but the license is cheap for it.  Go to www.vandyke.com and download
 the shareware version to give it a try.
 - Original Message -
 From: Angerer, Chad [EMAIL PROTECTED]
 To: 'Tim Thorburn' [EMAIL PROTECTED]; [EMAIL PROTECTED]
 Sent: Monday, May 21, 2001 1:58 PM
 Subject: RE: Telnet into MySQL
 
  go to www.ssh.com .. I beleieve there a few nice clients there.
 
  Chad
 
  -Original Message-
  From: Tim Thorburn [mailto:[EMAIL PROTECTED]]
  Sent: Monday, May 21, 2001 3:21 PM
  To: [EMAIL PROTECTED]
  Subject: Telnet into MySQL
 
 
  Hello,
 
  Can someone here recommend a good Telnet program (with SSH) that I can use
  to connect to my servers MySQL database?
 
  Preferably something shareware/freeware - but if it must be purchased, I'm
  not against that.
 
  Thank you
 
  -Tim
 
 
  -
  Before posting, please check:
 http://www.mysql.com/manual.php   (the manual)
 http://lists.mysql.com/   (the list archive)
 
  To request this thread, e-mail [EMAIL PROTECTED]
  To unsubscribe, e-mail
  [EMAIL PROTECTED]
  Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php
 
  -
  Before posting, please check:
 http://www.mysql.com/manual.php   (the manual)
 http://lists.mysql.com/   (the list archive)
 
  To request this thread, e-mail [EMAIL PROTECTED]
  To unsubscribe, e-mail [EMAIL PROTECTED]
  Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php
 
 
 
 
 -
 Before posting, please check:
http://www.mysql.com/manual.php   (the manual)
http://lists.mysql.com/   (the list archive)
 
 To request this thread, e-mail [EMAIL PROTECTED]
 To unsubscribe, e-mail [EMAIL PROTECTED]
 Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php
 
 -
 Before posting, please check:
http://www.mysql.com/manual.php   (the manual)
http://lists.mysql.com/   (the list archive)
 
 To request this thread, e-mail [EMAIL PROTECTED]
 To unsubscribe, e-mail [EMAIL PROTECTED]
 Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php

-
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/   (the list archive)

To request this thread, e-mail [EMAIL PROTECTED]
To unsubscribe, e-mail [EMAIL PROTECTED]
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php




Re: Telnet into MySQL

2001-05-21 Thread Brian Warn

I vote for VanDyke's CRT as well -- lots of features and ~ $30 (US) for the
license.

- Original Message -
From: [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Monday, May 21, 2001 3:04 PM
Subject: Re: Telnet into MySQL



 Any good ones for the Windozes version..When I use just regular ol Telnet
I get Smiley and clovers and hearts and the version.

 Cheers

 -Original Message-
 FROM: Eric Fitzgerald
 TO: Angerer, Chad, 'Tim Thorburn', [EMAIL PROTECTED]
 DATE: Mon 5/21/01 15:58
 SUBJECT: Re: Telnet into MySQL

 I really prefer SecureCRT from VanDyke software myself.  Perfect blend of
 features and simplicity for my needs.  It has a shareware version that
does
 expire, but the license is cheap for it.  Go to www.vandyke.com and
download
 the shareware version to give it a try.
 - Original Message -
 From: Angerer, Chad [EMAIL PROTECTED]
 To: 'Tim Thorburn' [EMAIL PROTECTED]; [EMAIL PROTECTED]
 Sent: Monday, May 21, 2001 1:58 PM
 Subject: RE: Telnet into MySQL


  go to www.ssh.com .. I beleieve there a few nice clients there.
 
  Chad
 
  -Original Message-
  From: Tim Thorburn [mailto:[EMAIL PROTECTED]]
  Sent: Monday, May 21, 2001 3:21 PM
  To: [EMAIL PROTECTED]
  Subject: Telnet into MySQL
 
 
  Hello,
 
  Can someone here recommend a good Telnet program (with SSH) that I can
use
  to connect to my servers MySQL database?
 
  Preferably something shareware/freeware - but if it must be purchased,
I'm
  not against that.
 
  Thank you
 
  -Tim
 
 
  -
  Before posting, please check:
 http://www.mysql.com/manual.php   (the manual)
 http://lists.mysql.com/   (the list archive)
 
  To request this thread, e-mail [EMAIL PROTECTED]
  To unsubscribe, e-mail
  [EMAIL PROTECTED]
  Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php
 
  -
  Before posting, please check:
 http://www.mysql.com/manual.php   (the manual)
 http://lists.mysql.com/   (the list archive)
 
  To request this thread, e-mail [EMAIL PROTECTED]
  To unsubscribe, e-mail
[EMAIL PROTECTED]
  Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php
 
 
 


 -
 Before posting, please check:
http://www.mysql.com/manual.php   (the manual)
http://lists.mysql.com/   (the list archive)

 To request this thread, e-mail [EMAIL PROTECTED]
 To unsubscribe, e-mail [EMAIL PROTECTED]
 Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php



 -
 Before posting, please check:
http://www.mysql.com/manual.php   (the manual)
http://lists.mysql.com/   (the list archive)

 To request this thread, e-mail [EMAIL PROTECTED]
 To unsubscribe, e-mail
[EMAIL PROTECTED]
 Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php


_
Do You Yahoo!?
Get your free @yahoo.com address at http://mail.yahoo.com


-
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/   (the list archive)

To request this thread, e-mail [EMAIL PROTECTED]
To unsubscribe, e-mail [EMAIL PROTECTED]
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php




Re: Telnet into MySQL

2001-05-21 Thread Paul DuBois

At 4:04 PM -0600 5/21/01, [EMAIL PROTECTED] wrote:
Any good ones for the Windozes version..When I use just regular ol 
Telnet I get Smiley and clovers and hearts and the version.

That's exactly why you don't Telnet to the MySQL server.  You're seeing
information that's part of the binary client-server protocol.  Use the
mysql program instead.


Cheers

-Original Message-
FROM: Eric Fitzgerald
TO: Angerer, Chad, 'Tim Thorburn', [EMAIL PROTECTED]
DATE: Mon 5/21/01 15:58
SUBJECT: Re: Telnet into MySQL

I really prefer SecureCRT from VanDyke software myself.  Perfect blend of
features and simplicity for my needs.  It has a shareware version that does
expire, but the license is cheap for it.  Go to www.vandyke.com and download
the shareware version to give it a try.
- Original Message -
From: Angerer, Chad [EMAIL PROTECTED]
To: 'Tim Thorburn' [EMAIL PROTECTED]; [EMAIL PROTECTED]
Sent: Monday, May 21, 2001 1:58 PM
Subject: RE: Telnet into MySQL


  go to www.ssh.com .. I beleieve there a few nice clients there.

  Chad

  -Original Message-
  From: Tim Thorburn [mailto:[EMAIL PROTECTED]]
  Sent: Monday, May 21, 2001 3:21 PM
  To: [EMAIL PROTECTED]
  Subject: Telnet into MySQL


  Hello,

  Can someone here recommend a good Telnet program (with SSH) that I can use
  to connect to my servers MySQL database?

  Preferably something shareware/freeware - but if it must be purchased, I'm
  not against that.

  Thank you

  -Tim


  -
  Before posting, please check:
 http://www.mysql.com/manual.php   (the manual)
 http://lists.mysql.com/   (the list archive)

  To request this thread, e-mail [EMAIL PROTECTED]
  To unsubscribe, e-mail
  [EMAIL PROTECTED]
  Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php

  -
  Before posting, please check:
 http://www.mysql.com/manual.php   (the manual)
 http://lists.mysql.com/   (the list archive)

  To request this thread, e-mail [EMAIL PROTECTED]
  To unsubscribe, e-mail [EMAIL PROTECTED]
  Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php





-
Before posting, please check:
http://www.mysql.com/manual.php   (the manual)
http://lists.mysql.com/   (the list archive)

To request this thread, e-mail [EMAIL PROTECTED]
To unsubscribe, e-mail [EMAIL PROTECTED]
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php



-
Before posting, please check:
http://www.mysql.com/manual.php   (the manual)
http://lists.mysql.com/   (the list archive)

To request this thread, e-mail [EMAIL PROTECTED]
To unsubscribe, e-mail [EMAIL PROTECTED]
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php


-- 
Paul DuBois, [EMAIL PROTECTED]

-
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/   (the list archive)

To request this thread, e-mail [EMAIL PROTECTED]
To unsubscribe, e-mail [EMAIL PROTECTED]
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php




Re: Telnet into MySQL

2001-05-21 Thread massey


Ahh come on.. I want to make things difficultG Normaly I never think about Telnet 
but for Fun on a borring Monday I decided hmmm let's play.

If I do any thing it normaly through an ASTA Server and Client. Cool stuff.


Cheers

 
-Original Message-
FROM: Paul DuBois
TO: [EMAIL PROTECTED], [EMAIL PROTECTED]
DATE: Mon 5/21/01 16:46
SUBJECT: Re: Telnet into MySQL

At 4:04 PM -0600 5/21/01, [EMAIL PROTECTED] wrote:
Any good ones for the Windozes version..When I use just regular ol 
Telnet I get Smiley and clovers and hearts and the version.

That's exactly why you don't Telnet to the MySQL server.  You're seeing
information that's part of the binary client-server protocol.  Use the
mysql program instead.


Cheers

-Original Message-
FROM: Eric Fitzgerald
TO: Angerer, Chad, 'Tim Thorburn', [EMAIL PROTECTED]
DATE: Mon 5/21/01 15:58
SUBJECT: Re: Telnet into MySQL

I really prefer SecureCRT from VanDyke software myself.  Perfect blend of
features and simplicity for my needs.  It has a shareware version that does
expire, but the license is cheap for it.  Go to www.vandyke.com and download
the shareware version to give it a try.
- Original Message -
From: Angerer, Chad [EMAIL PROTECTED]
To: 'Tim Thorburn' [EMAIL PROTECTED]; [EMAIL PROTECTED]
Sent: Monday, May 21, 2001 1:58 PM
Subject: RE: Telnet into MySQL


  go to www.ssh.com .. I beleieve there a few nice clients there.

  Chad

  -Original Message-
  From: Tim Thorburn [mailto:[EMAIL PROTECTED]]
  Sent: Monday, May 21, 2001 3:21 PM
  To: [EMAIL PROTECTED]
  Subject: Telnet into MySQL


  Hello,

  Can someone here recommend a good Telnet program (with SSH) that I can use
  to connect to my servers MySQL database?

  Preferably something shareware/freeware - but if it must be purchased, I'm
  not against that.

  Thank you

  -Tim


  -
  Before posting, please check:
 http://www.mysql.com/manual.php   (the manual)
 http://lists.mysql.com/   (the list archive)

  To request this thread, e-mail [EMAIL PROTECTED]
  To unsubscribe, e-mail
  [EMAIL PROTECTED]
  Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php

  -
  Before posting, please check:
 http://www.mysql.com/manual.php   (the manual)
 http://lists.mysql.com/   (the list archive)

  To request this thread, e-mail [EMAIL PROTECTED]
  To unsubscribe, e-mail [EMAIL PROTECTED]
  Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php





-
Before posting, please check:
http://www.mysql.com/manual.php   (the manual)
http://lists.mysql.com/   (the list archive)

To request this thread, e-mail [EMAIL PROTECTED]
To unsubscribe, e-mail [EMAIL PROTECTED]
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php



-
Before posting, please check:
http://www.mysql.com/manual.php   (the manual)
http://lists.mysql.com/   (the list archive)

To request this thread, e-mail [EMAIL PROTECTED]
To unsubscribe, e-mail [EMAIL PROTECTED]
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php


-- 
Paul DuBois, [EMAIL PROTECTED]


-
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/   (the list archive)

To request this thread, e-mail [EMAIL PROTECTED]
To unsubscribe, e-mail [EMAIL PROTECTED]
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php




Re: Telnet into MySQL

2001-05-21 Thread Steve Brazill

Before you listen to anyone else (and spend any money on a commercial SSH client)
download and try PuttySSH,  which is a free 'telnet like' SSH client (it WILL
do straight telnet if you want it to) that works fabulously (at least for me at
home and work for the past year).   You can also download SCP (secure copy) and
other utilities (i.e. SFTP) from the website:

http://www.chiark.greenend.org.uk/~sgtatham/putty/

Even if you're actually trying to connect to the MySQL 'service' with this
utility (which would be pointless) you should still download it,  since using
Telnet and/or FTP for communicating with your servers is suicidal...


j.urban wrote:

 Take a look at the posts from Paul and others...  You can't connect
 directly to MySQL using telnet without knowning the MySQL communication
 protocol...

 There are many MySQL client programs -- a good one for Windows
 is urSQL available from http://www.urbanresearch.com/ursql

 You might also want to have a look at the MySQL manual at
 http://www.mysql.com/doc/

 Good luck.

 On Mon, 21 May 2001 [EMAIL PROTECTED] wrote:

 
  Any good ones for the Windozes version..When I use just regular ol
  Telnet I get Smiley and clovers and hearts and the version.
 
  Cheers
 
  -Original Message-
  FROM: Eric Fitzgerald
  TO: Angerer, Chad, 'Tim Thorburn', [EMAIL PROTECTED]
  DATE: Mon 5/21/01 15:58
  SUBJECT: Re: Telnet into MySQL
 
  I really prefer SecureCRT from VanDyke software myself.  Perfect blend of
  features and simplicity for my needs.  It has a shareware version that does
  expire, but the license is cheap for it.  Go to www.vandyke.com and download
  the shareware version to give it a try.
  - Original Message -
  From: Angerer, Chad [EMAIL PROTECTED]
  To: 'Tim Thorburn' [EMAIL PROTECTED]; [EMAIL PROTECTED]
  Sent: Monday, May 21, 2001 1:58 PM
  Subject: RE: Telnet into MySQL
 
 
   go to www.ssh.com .. I beleieve there a few nice clients there.
  
   Chad
  
   -Original Message-
   From: Tim Thorburn [mailto:[EMAIL PROTECTED]]
   Sent: Monday, May 21, 2001 3:21 PM
   To: [EMAIL PROTECTED]
   Subject: Telnet into MySQL
  
  
   Hello,
  
   Can someone here recommend a good Telnet program (with SSH) that I can use
   to connect to my servers MySQL database?
  
   Preferably something shareware/freeware - but if it must be purchased, I'm
   not against that.
  
   Thank you
  
   -Tim
  
  
   -
   Before posting, please check:
  http://www.mysql.com/manual.php   (the manual)
  http://lists.mysql.com/   (the list archive)
  
   To request this thread, e-mail [EMAIL PROTECTED]
   To unsubscribe, e-mail
   [EMAIL PROTECTED]
   Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php
  
   -
   Before posting, please check:
  http://www.mysql.com/manual.php   (the manual)
  http://lists.mysql.com/   (the list archive)
  
   To request this thread, e-mail [EMAIL PROTECTED]
   To unsubscribe, e-mail [EMAIL PROTECTED]
   Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php
  
  
  
 
 
  -
  Before posting, please check:
 http://www.mysql.com/manual.php   (the manual)
 http://lists.mysql.com/   (the list archive)
 
  To request this thread, e-mail [EMAIL PROTECTED]
  To unsubscribe, e-mail [EMAIL PROTECTED]
  Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php
 
 
 
  -
  Before posting, please check:
 http://www.mysql.com/manual.php   (the manual)
 http://lists.mysql.com/   (the list archive)
 
  To request this thread, e-mail [EMAIL PROTECTED]
  To unsubscribe, e-mail [EMAIL PROTECTED]
  Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php
 

 -
 Before posting, please check:
http://www.mysql.com/manual.php   (the manual)
http://lists.mysql.com/   (the list archive)

 To request this thread, e-mail [EMAIL PROTECTED]
 To unsubscribe, e-mail [EMAIL PROTECTED]
 Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php



Re: Telnet into MySQL

2001-05-21 Thread Tim Thorburn

Okok, my bad!!

What I meant to say was that I needed a Telnet program with SSH so that I 
could log into the shell of my web hosting provider and thereby access 
MySQL from shell.



At 05:46 PM 5/21/2001 -0500, you wrote:
At 4:04 PM -0600 5/21/01, [EMAIL PROTECTED] wrote:
Any good ones for the Windozes version..When I use just regular ol Telnet 
I get Smiley and clovers and hearts and the version.

That's exactly why you don't Telnet to the MySQL server.  You're seeing
information that's part of the binary client-server protocol.  Use the
mysql program instead.


Cheers

-Original Message-
FROM: Eric Fitzgerald
TO: Angerer, Chad, 'Tim Thorburn', [EMAIL PROTECTED]
DATE: Mon 5/21/01 15:58
SUBJECT: Re: Telnet into MySQL

I really prefer SecureCRT from VanDyke software myself.  Perfect blend of
features and simplicity for my needs.  It has a shareware version that does
expire, but the license is cheap for it.  Go to www.vandyke.com and download
the shareware version to give it a try.
- Original Message -
From: Angerer, Chad [EMAIL PROTECTED]
To: 'Tim Thorburn' [EMAIL PROTECTED]; [EMAIL PROTECTED]
Sent: Monday, May 21, 2001 1:58 PM
Subject: RE: Telnet into MySQL


  go to www.ssh.com .. I beleieve there a few nice clients there.

  Chad

  -Original Message-
  From: Tim Thorburn [mailto:[EMAIL PROTECTED]]
  Sent: Monday, May 21, 2001 3:21 PM
  To: [EMAIL PROTECTED]
  Subject: Telnet into MySQL


  Hello,

  Can someone here recommend a good Telnet program (with SSH) that I can use
  to connect to my servers MySQL database?

  Preferably something shareware/freeware - but if it must be purchased, I'm
  not against that.

  Thank you

  -Tim


  -
  Before posting, please check:
 http://www.mysql.com/manual.php  (the manual)
 http://lists.mysql.com/  (the list archive)

  To request this thread, e-mail [EMAIL PROTECTED]
  To unsubscribe, e-mail
  [EMAIL PROTECTED]
  Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php

  -
  Before posting, please check:
 http://www.mysql.com/manual.php  (the manual)
 http://lists.mysql.com/  (the list archive)

  To request this thread, e-mail [EMAIL PROTECTED]
  To unsubscribe, e-mail [EMAIL PROTECTED]
  Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php



-
Before posting, please check:
http://www.mysql.com/manual.php  (the manual)
http://lists.mysql.com/  (the list archive)

To request this thread, e-mail [EMAIL PROTECTED]
To unsubscribe, e-mail [EMAIL PROTECTED]
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php



-
Before posting, please check:
http://www.mysql.com/manual.php  (the manual)
http://lists.mysql.com/  (the list archive)

To request this thread, e-mail [EMAIL PROTECTED]
To unsubscribe, e-mail [EMAIL PROTECTED]
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php


--
Paul DuBois, [EMAIL PROTECTED]

-
Before posting, please check:
   http://www.mysql.com/manual.php  (the manual)
   http://lists.mysql.com/  (the list archive)

To request this thread, e-mail [EMAIL PROTECTED]
To unsubscribe, e-mail 
[EMAIL PROTECTED]
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php


-
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/   (the list archive)

To request this thread, e-mail [EMAIL PROTECTED]
To unsubscribe, e-mail [EMAIL PROTECTED]
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php