首页 > 数据库技术 > 详细

安装MYSQL 8.0

时间:2020-03-22 19:22:33      阅读:49      评论:0      收藏:0      [点我收藏+]

https://dev.mysql.com/doc/mysql-installation-excerpt/5.7/en/linux-installation-yum-repo.html

 

配置repolist

yum localinstall https://dev.mysql.com/get/mysql80-community-release-el8-1.noarch.rpm

 

Disabling the Default MySQL Module

(EL8 systems only) EL8-based systems such as RHEL8 and Oracle Linux 8 include a MySQL module that is enabled by default. Unless this module is disabled, it masks packages provided by MySQL repositories. To disable the included module and make the MySQL repository packages visible, use the following command (for dnf-enabled systems, replace yum in the command with dnf):

 

sudo yum module disable mysql

 

Installing MySQL

sudo yum install mysql-community-server

 

Starting the MySQL Server

service mysqld start

 

修改密码

grep ‘temporary password‘ /var/log/mysqld.log

ALTER USER ‘root‘@‘localhost‘ IDENTIFIED BY ‘MyNewPass4@‘;

 

安装MYSQL 8.0

原文:https://www.cnblogs.com/kaisim/p/12547611.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!