美文网首页
Centos 7 安装 MySql 8.0 服务

Centos 7 安装 MySql 8.0 服务

作者: 0非空0 | 来源:发表于2019-12-21 21:39 被阅读0次

    下载MySql 8.0

    下载 Mysql yum包
    wget -i -c https://repo.mysql.com//mysql80-community-release-el7-3.noarch.rpm
    使用上面的命令就直接下载了安装用的Yum Repository,大概25KB的样子,然后就可以直接yum安装了。
    yum -y install mysql80-community-release-el7-3.noarch.rpm
    安装MySql服务
    yum -y install mysql-community-server

    设置MySql数据库

    启动mysql
    systemctl start mysqld.service
    查看运行状态
    systemctl status mysqld.service
    获取MySQL的临时密码
    grep 'temporary password' /var/log/mysqld.log
    登陆并修改密码
    mysql -uroot -p
    修改密码
    ALTER USER 'root'@'localhost' IDENTIFIED BY '复杂密码';
    新密码设置的时候如果设置的过于简单会报错:

    授权远程登陆

    创建远程登陆用户
    create user 'qf' @'%' identified by 'Qf@rq1225.com';
    赋予权限
    grant all privileges on *.* to 'qf' @'%';

    卸载yum
    yum -y remove mysql57-community-release-el7-10.noarch

    相关文章

      网友评论

          本文标题:Centos 7 安装 MySql 8.0 服务

          本文链接:https://www.haomeiwen.com/subject/rkzgnctx.html