linux下mysql允许远程连接

Posted Aaron2705

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux下mysql允许远程连接相关的知识,希望对你有一定的参考价值。

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允许远程连接的主要内容,如果未能解决你的问题,请参考以下文章

Linux下mysql允许远程连接怎么设置

Linux下mysql允许远程连接怎么设置

Linux下mysql允许远程连接怎么设置

Linux下mysql允许远程连接怎么设置

Linux下mysql允许远程连接怎么设置

linux 下解决mysql root 权限无法远程连接问题