【个人记录】创建mysql用户并设置密码支持远程登陆

前言

记录一下创建mysql用户并设置密码支持远程登陆的常用命令。

查看当前mysql的用户信息

select user,host,password from mysql.user;

创建账号分配权限

参数
账号 admin
密码 password
连接地址 所有地址
数据库 所有数据库
所有表
操作 所有操作
grant all privileges on *.* to admin@'%' identified by 'password' WITH GRANT OPTION;

刷新缓存

flush privileges;

你可能感兴趣的:(Linux,mysql,数据库)