centos安装mysql-8

前景说明:通过安装mysql-8,在centos上连接云上的数据库,而非部署mysql服务端

试用场景:云上数据库配置了ip白名单,只能通过centos服务器进行访问的情况

配置Mysql 8.0安装源

sudo rpm -Uvh https://dev.mysql.com/get/mysql80-community-release-el7-1.noarch.rpm

安装Mysql 8.0

sudo yum --enablerepo=mysql80-community install mysql-community-server

至此,安装完成

  • 客户端版本5.7 + 服务端版本8.0的情况,直接连接会报错
Authentication plugin 'caching_sha2_password' cannot be loaded

参考