我刚买了Coda 2,我想试试这个关于mysql数据库连接的功能。我无法连接。出现的错误是:
Unable to connect to host 1.2.3.4, or the request timed out.
Be sure that the address is correct and that you have the necessary privileges,
or try increasing the connection timeout (currently 0 seconds).
MySQL said: Can't connect to MySQL server on '1.2.3.4' (60)
错误需要60秒才能显示。为了便于回答,我会举个例子:
服务器IP:1.2.3.4
MYSQL用户名:root
MYSQL密码:1234root
我在Windows服务器上使用xampp。如何远程连接到mysql数据库?关于权限,我用于root的帐户具有所有权限。谢谢你,祝你度过愉快的假期。
答案 0 :(得分:0)
您需要配置您的mysql服务器以允许远程访问root,这通常是一个非常糟糕的主意。远程访问已经够糟糕了。您需要允许远程访问并授予root用户远程地址访问权限。
请参阅Enable remote MySQL connection: ERROR 1045 (28000): Access denied for user
这就是为什么人们通常安装类似phpMyAdmin的东西来获得这种访问权限。设置非root用户是另一种选择。