最近买了个阿里云的CentOS轻型数据库,用本地mysqlbench一直连接不上。已解决:
1.mysql授权远程连接:
mysql-u root-p
use mysql
grant all privileges on *.* to 'root'@'%' identified by 'password';
all:允许所有用户登录
on*.*:允许操作所有表,允许所有操作
@%:允许所有ip访问
2.开启3306端口
最近买了个阿里云的CentOS轻型数据库,用本地mysqlbench一直连接不上。已解决:
1.mysql授权远程连接:
mysql-u root-p
use mysql
grant all privileges on *.* to 'root'@'%' identified by 'password';
all:允许所有用户登录
on*.*:允许操作所有表,允许所有操作
@%:允许所有ip访问
2.开启3306端口
本文标题:阿里云CentOS配置mysql远程访问授权问题
本文链接:https://www.haomeiwen.com/subject/qnxqsftx.html
网友评论