CentOS 7安装MySQL 8
- 下载 MySQL yum包
1 2 |
wget http://repo.mysql.com/mysql80-community-release-sles12-3.noarch.rpm |
- 安装MySQL源
1 2 |
rpm -Uvh mysql80-community-release-sles12-3.noarch.rpm |
- 安装MySQL服务端,需要等待一些时间
1 2 3 |
yum -y install mysql yum -y install mariadb-server |
- 启动
1 2 3 |
systemctl enable mariadb systemctl start mariadb |
Leave a Comment