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

linux下mysql允许远程连接

时间:2018-09-23 15:12:55      阅读:151      评论:0      收藏:0      [点我收藏+]

标签:创建用户   strong   mys   授权   man   http   mysql   and   pre   

1. MySql安装教程

https://dev.mysql.com/doc/refman/5.7/en/linux-installation-yum-repo.html

默认情况下mysq的 root用户是不能远程连接的

2. 查看linux防火墙是否开放3306端口

技术分享图片

3. 添加防火墙例外

技术分享图片

4. 重启防火墙

 技术分享图片

5. 创建远程连接用户并授权

 mysql> select host,user,password from mysql.user;

 技术分享图片

创建用户

create user test identified by 123456;

技术分享图片

授权

grant all privileges on *.* to test@%identified by 123456 with grant option;
flush privileges;

修改用户密码

update mysql.user set password=password(新密码) where User="test" and Host="localhost";

删除用户

delete from user where User=test and Host=localhost;

 

linux下mysql允许远程连接

标签:创建用户   strong   mys   授权   man   http   mysql   and   pre   

原文地址:https://www.cnblogs.com/guo-rong/p/9692471.html

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