一、mysql授权
1、进入mysql monitor
sudo mysql -uroot -p
2、授权用户
mysql>grant all privileges on *.* to 'root'@'%' identified by 'youpassword' with grant option;
1).:第一个代表数据库名;第二个代表表名。这里的意思是所有数据库里的所有表都授权给用户。root:授予root账号。“%”:表示授权的用户IP可以指定,这里代表任意的IP地址都能访问MySQL数据库。“password”:分配账号对应的密码,这里密码自己替换成你的 mysql root帐号 密码。
2、刷新权限信息
mysql>flush privileges;
3 、重启mysql
/etc/init.d/mysql restart
二、mysql配置文件
vi /etc/mysql/mysql.conf.d/mysqld.cnf
注释 bind-address = 127.0.0.1
添加character_set_server=utf8
三、添加安全组规则
配置mysql安全组配置规则