2020
10-10
10-10
MySQL如何通过Navicat实现远程连接
直接使用Navicat通过IP连接会报各种错误,例如:Error1130:Host'192.168.1.80'isnotallowedtoconnecttothisMySQLserver。经过个人验证,得到解决方法,如下:授权法:1.首先使用localhost登录到想要进行远程连接的数据库2.打开命令提示窗口,输入如下命令:mysql>grantallprivilegeson*.*to'root'@'%'identifiedby'123456'withgrantoption;QueryOK,0rowsaffectedmysql>flushprivileges;QueryOK,0...
继续阅读 >