码迷,mamicode.com
首页 > 数据库 > 详细

centos7 安装 mysql5.7

时间:2020-03-20 13:00:11      阅读:869      评论:0      收藏:0      [点我收藏+]

标签:repo   下载   mys   statement   rpm   unity   启动   警告   alt   

  • 下载rpm包

    wget https://dev.mysql.com/get/mysql57-community-release-el7-9.noarch.rpm

  • 对repo进行安装

    rpm -ivh mysql57-community-release-el7-9.noarch.rpm

  • 进入 /etc/yum.repos.d 目录

  • 查看是否有 mysql-community.repomysql-community-source.repo 文件

  • 安装

    yum install mysql-server -y

  • 启动

    systemctl start mysqld

  • 查看是否启动

    ps aux | grep mysql

  • 生成临时密码

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

    2020-03-20T02:17:41.344655Z 1 [Note] A temporary password is generated for root@localhost: vSX&3(gEyt:w
  • 进入mysql

    mysql -uroot -p  然后回车,输入上面提供的临时密码
  • 报警告信息

    You must reset your password using ALTER USER statement before executing this statement.
  • 如何排除警告信息

    MySQL版本5.7.6版本以前用户可以使用如下命令:
    mysql> SET PASSWORD = PASSWORD('你自己设置的密码'); 
    
    MySQL版本5.7.6版本开始的用户可以使用如下命令:
    mysql> ALTER USER USER() IDENTIFIED BY '你自己设置的密码';
  • 关闭服务

    systemctl stop mysqld
  • 启动服务

    systemctl start mysqld
  • 登录你的mysql

    mysql -uroot -p你设置的密码
  • 至此 你的mysql5.7的版本搭建完成

centos7 安装 mysql5.7

标签:repo   下载   mys   statement   rpm   unity   启动   警告   alt   

原文地址:https://www.cnblogs.com/wuxiaoshi/p/12530837.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!