tee /etc/yum.repos.d/mysql-community.repo<<EOF [mysql57-community] name=MySQL 5.7 Community Server baseurl=http://repo.mysql.com/yum/mysql-5.7-community/el/7/\$basearch/ enabled=1 gpgcheck=0
[mysql-connectors-community] name=MySQL Connectors Community baseurl=http://repo.mysql.com/yum/mysql-connectors-community/el/7/\$basearch/ enabled=1 gpgcheck=0
[mysql-tools-community] name=MySQL Tools Community baseurl=http://repo.mysql.com/yum/mysql-tools-community/el/7/\$basearch/ enabled=1 gpgcheck=0 EOF
dnf config-manager --disable mysql80-community dnf config-manager --enable mysql57-community
dnf install -y libncurses* ncurses-devel dnf --enablerepo=devel install -y ncurses-compat-libs dnf install -y mysql-community-server
|