阿里云centos远程连接mysql

Posted neeo

tags:

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

首先在服务器管理控制台设置防火墙规则

添加规则

技术分享图片

使用root登录到mysql

添加一个用户名,权限为%的远程连接用户

技术分享图片

  grant all on *.* to ‘yuancheng‘@‘%‘ identified by ‘123456‘;
  flush privileges;

ok,就可以用Navicat测试了

查看用户列表:

  select host,user from mysql.user;

删除某个用户:

  use mysql;

  delete from user where user=‘yuancheng‘ and host=‘%‘;

  flush privileges;

更改某个用户的密码:

  update mysql.user set password=password(‘new password‘) where user=‘指定用户‘ and host=‘%‘;

 


摘自:

  https://my.oschina.net/liujiest/blog/634150   # 远程连接

  http://blog.51cto.com/jschu/1693379   # 用户操作

 


以上是关于阿里云centos远程连接mysql的主要内容,如果未能解决你的问题,请参考以下文章

阿里云linux的mysql怎么用工具远程连接

CentOS系列001:windows远程桌面连接CentOS

centos 远程连接数据库踩坑记

阿里云ECS使用vnc远程连接(Ubuntu + CentOS)

轻松,阿里云云服务器上安装mysql5.6,解决远程连接失败问题

无法远程连接阿里云的Mysql