简体   繁体   中英

Can't connect navicat to mysql

I have FreeBSD with mysql server and want to connect navicat with them. On vBox I have bridged network (192.168.0.225). I can ping to this from my system (192.168.0.135)

With ssh and ftp, it isn't a problem.

navicat error: 2003 -can't connnect to mysql server on 192.168.0.225. 10061 unknown error

It's a navicat's bug. Delete the connection config where in navicat/servers/your-connection-name. Then try to create a new connection and run.

It is likely, your mysqld is only listening on the local socket ( /tmp/mysql.sock or some such). That's the most secure mode.

To make it more promiscuous, you'll need to configure the server to listen for TCP-connections as well.

Look for the bind-address setting in the [mysqld] section of /usr/local/mysql/my.cnf . You'll, probably, need something like

bind-address = 192.168.0.225

Consult this tutorial for more information on how to then authorize remote users -- MySQL allows configuring different passwords and access-policies depending on the where the connection is coming from.

You've probably disabled all apps from the service.

  1. Click from start menu System Configuration
  2. Click Services
  3. Hide all Microsoft Services
  4. Click following picture,which you install DB then enable and apply. 在此处输入图片说明

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM