# wget http://dev.MysqL.com/get/MysqL-community-release-el7-5.noarch.rpm
# rpm -ivh MysqL-community-release-el7-5.noarch.rpm
# yum install MysqL-community-server
成功安装之后重启MysqL服务
# service MysqLd restart
设置密码
# MysqL -u root MysqL
MysqL> UPDATE user @H_301_23@SET Password=PASSWORD('123456') @H_301_23@where USER='root' @H_301_23@and host='root' @H_301_23@or host='localhost';
MysqL> FLUSH PRIVILEGES;
# quit
启动MysqL
# service MysqL start
# MysqL -uroot -p123456
MysqL5.6操作时报错:You must SET PASSWORD before executing this statement解决
MysqL> @H_301_23@SET PASSWORD = PASSWORD('123456');
设置远程连接
MysqL> grant all @H_301_23@on *.* @H_301_23@to root@'%' identified @H_301_23@by '123456';
开启端口
首先在阿里云安全组添加 3306端口
在开启防火墙端口
# firewall-cmd --permanent --zone=public --add-port=3306/tcp
# firewall-cmd --reload