码迷,mamicode.com
首页 > 数据库 > 详细

mysql开启远程连接

时间:2019-05-30 13:23:54      阅读:103      评论:0      收藏:0      [点我收藏+]

标签:远程连接   local   修改   where   pre   localhost   mys   sel   mysql开启   

1、登陆mysql

mysql -u root -p

2、修改mysql库的user表,将host项,从localhost改为%。%这里表示的是允许任意host访问,如果只允许某一个ip访问,则可改为相应的ip,比如可以将localhost改为192.168.1.123,这表示只允许局域网的192.168.1.123这个ip远程访问mysql。

mysql> use mysql;
mysql> update user set host = ‘%‘ where user = ‘root‘;
mysql> select host, user from user;
mysql> flush privileges;
3、开发3306端口

mysql开启远程连接

标签:远程连接   local   修改   where   pre   localhost   mys   sel   mysql开启   

原文地址:https://www.cnblogs.com/feihusurfer/p/10948965.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!