mysql数据库配置远程访问

时间:2022-07-17 16:20:31

今天配置远程访问数据库时出现远程机子可以访问,但是主机却访问不了了(Host '127.0.0.1' is not allowed to connect to this MySQL server)的问题,现在给大家分享下具体操作!

假设远程访问的主机IP 为:192.168.1.5,数据库服务器IP为:192.168.1.9

第一步:

在MySQL配置文件(my.ini)中设r的[mysqld]下面添加“skip-name-resolve”;重启/启动mysql服务


第二步:

用命令行登录数据库服务器(192.168.1.9),登录命令:mysql -uroot -p***,登录成功后执行:grant all privileges on *.* to 'userName'@'192.168.1.5' identifiel by 'password' with grant option;

(userName和password可以自己定义)

然后再执行:flush privileges;

为避免出现Host '127.0.0.1' is not allowed to connect to this MySQL server问题,最好也执行下:

grant all privileges on *.* to 'root'@'127.0.0.1' identifiel by 'password' with grant option;