欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Mysql允许外网访问设置步骤

程序员文章站 2023-12-19 20:35:34
1、打开mysql.exe(mysql command line client),输入密码 2、输入:use mysql; 3、查询host输入: select u...

Mysql允许外网访问设置步骤

1、打开mysql.exe(mysql command line client),输入密码

2、输入:use mysql;

3、查询host输入: select user,host from user;

4、创建host(如果有"%"这个host值,则跳过这一步)

如果没有"%"这个host值,就执行下面这两句:

mysql> update user set host='%' where user='root';
mysql> flush privileges;

5、授权用户

(1)任意主机以用户root和密码pwd连接到mysql服务器

mysql> grant all privileges on *.* to 'root'@'%' identified by 'pwd' with grant option;
mysql> flush privileges;

(2)指定ip为(如192.168.1.100)的主机以用户tuser和密码tpwd连接到mysql服务器

mysql> grant all privileges on *.* to 'tuser'@'192.168.1.100' identified by 'tpwd' with grant option; 
mysql> flush privileges;

以上所述是小编给大家介绍的mysql允许外网访问设置步骤,希望对大家有所帮助

上一篇:

下一篇: