Mysql Workbench error “system error:61”

后端 未结 4 1871
天涯浪人
天涯浪人 2021-01-28 13:34

I have mysql installed several months ago. However I do remember using mysql workbench successfully at one point of time. Today I try launching it and get following error

<
相关标签:
4条回答
  • 2021-01-28 13:47

    Try using the connection method: Local Socket/Pipe.

    0 讨论(0)
  • 2021-01-28 13:49

    open /etc/mysql/my.cnf in a text editor and try changing:

    bind-address            = 127.0.0.1
    

    to

    #bind-address            = 127.0.0.1 
    

    and then restart MySQL.

    0 讨论(0)
  • 2021-01-28 13:55

    If you are trying to use the MySQL Workbench and connect through an SSH tunnel, you will get this error when your SSH connection does not complete successfully (e.g. improper host, password, key file, etc)

    A good way to trouble shoot this is to separately test the the ssh connection from the machine you are trying to connect from and establish that you can do so succesfully.

    0 讨论(0)
  • 2021-01-28 14:06

    I came across the same problem.I fix this below: 3306 port may be occupied by other process, so mysql change the port to 3307(or nearly other port 3308...).So when you connect,change the port to 3307 and try

    0 讨论(0)
提交回复
热议问题