mysql如何设置禁止远程连接

来自:互联网
时间:2020-09-27
阅读:
免费资源网 - https://freexyz.cn/

<a href=https://www.freexyz.cn/tag/MySQL.html target=_blank class=infotextkey>MySQL</a>如何设置禁止远程连接

具体步骤:

use mysql                #打开mysql数据库
 
#将host设置为localhost表示只能本地连接mysql
 
update user set host='localhost' where user='root';
 
flush privileges;        #刷新权限表,使配置生效

如果我们要开启远程连接,可以参考如下方法:

首先登录:

mysql -u root -h localhost -p
use mysql   
#打开mysql数据库#将host设置为%表示任何ip都能连接mysql,当然您也可以将host指定为某个ip
update user set host='%' where user='root' and host='localhost';flush privileges;        
#刷新权限表,使配置生效

完成之后我们就能远程连接我们的mysql了。

免费资源网 - https://freexyz.cn/
返回顶部
顶部