0%

CentOS7通过yum安装最新版本MySQL

CentOS 7之后的版本yum的默认源中使用MariaDB替代原先MySQL,因此安装方式较为以往有一些改变:

卸载原来的MariaDB

1
yum remove -y mariadb-config-3:10.1.17-1.el7.x86_64

下载mysql的源

1
wget http://dev.mysql.com/get/mysql57-community-release-el7-7.noarch.rpm

安装yum库

1
yum localinstall -y mysql57-community-release-el7-7.noarch.rpm

安装MySQL

1
yum install -y mysql-community-server

启动MySQL服务

1
systemctl start mysqld.service

MySQL5.7加强了root用户的安全性,因此在第一次安装后会初始化一个随机密码,以下为查看初始随机密码的方式

1
grep 'temporary password' /var/log/mysqld.log

使用初始随机密码登录后MySQL会强制要求修改密码,否则无法正常使用,(密码必须包含小写、大写字母及特殊字符,当然也有其他方法不受此限制,再次不多做描述),修改方法如下:

1
2
3
SET PASSWORD = PASSWORD('your new password');
ALTER USER 'root'@'localhost' PASSWORD EXPIRE NEVER;
flush privileges;

然后退出后即可用新密码登录。

远程连接授权:

1
GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY 'your password' WITH GRANT OPTION;