Todd A. Jacobs writes:
 > I downloaded and compiled the latest version of MySQLGUI and am connecting
 > to MySQL 3.22.32 on OpenBSD. When I try to tunnel MySQLGUI through the
 > following ssh tunnel:
 > 
 >       ssh -x -g -L 3306:localhost:3306 mysql
 > 
 > I get this error message from the MySQLGUI client:
 > 
 >      Can't connect to local MySQL server through \
 >      socket '/tmp/mysql.sock' (111)
 > 
 > What does this mean? At first glance, it looks like an X Windows error.
 > I don't have X running on the MySQL server; only on the remote. Could
 > this be the problem? That wouldn't really make sense; why would the client
 > require X services from the database host?
 > 
 > If it's something else, how can I fix it? Why can't I connect? I'm really
 > frustrated.
 > 
 > -- 
 > Todd A. Jacobs
 > CodeGnome Consulting, LTD
 > 
 > 

Hi!

This command enabled me to test mysqlgui over SSH tunnel without a
single problem :

#!/bin/sh
ssh1 -C [EMAIL PROTECTED] -L 110:work:110 -L 26:localhost:25 -L 6667:xxx.yyy.zzz:6667
 

Regards,

Sinisa

      ____  __     _____   _____  ___     ==  MySQL AB
     /*/\*\/\*\   /*/ \*\ /*/ \*\ |*|     Sinisa Milivojevic
    /*/ /*/ /*/   \*\_   |*|   |*||*|     mailto:[EMAIL PROTECTED]
   /*/ /*/ /*/\*\/*/  \*\|*|   |*||*|     Larnaca, Cyprus
  /*/     /*/  /*/\*\_/*/ \*\_/*/ |*|____
  ^^^^^^^^^^^^/*/^^^^^^^^^^^\*\^^^^^^^^^^^
             /*/             \*\                Developers Team

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

Reply via email to